# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
703275 | finn__ | Poi (IOI09_poi) | C++17 | 574 ms | 8712 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define N 2000
bitset<N> solved[N];
unsigned num_solved[N], contestant_num_solved[N], score[N], ranking[N];
bool compare_contestant(unsigned a, unsigned b)
{
if (score[a] == score[b])
{
if (contestant_num_solved[a] == contestant_num_solved[b])
return a < b;
return contestant_num_solved[a] > contestant_num_solved[b];
}
return score[a] > score[b];
}
int main()
{
size_t n, t, p;
cin >> n >> t >> p;
for (size_t i = 0; i < n; i++)
{
for (size_t j = 0; j < t; j++)
{
unsigned x;
cin >> x;
solved[i][j] = x;
contestant_num_solved[i] += x;
num_solved[j] += x;
}
ranking[i] = i;
}
for (size_t i = 0; i < n; i++)
for (size_t j = 0; j < t; j++)
if (solved[i][j])
score[i] += n - num_solved[j];
sort(ranking, ranking + n, compare_contestant);
for (size_t i = 0; i < n; i++)
if (ranking[i] + 1 == p)
cout << score[p - 1] << ' ' << i + 1 << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |