# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
767909 | benjaminkleyn | Poi (IOI09_poi) | C++17 | 225 ms | 4372 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define mp make_pair
int N, T, P;
bool solved[2000][2000];
int value[2000] = {0};
int score[2000] = {0};
int num_solved[2000] = {0};
int rankings[2000];
int main()
{
cin.tie(0)->sync_with_stdio(0);
cin >> N >> T >> P;
for (int i = 0; i < N; i++)
for (int j = 0; j < T; j++)
{
cin >> solved[i][j];
if (!solved[i][j])
value[j]++;
}
for (int i = 0; i < N; i++)
for (int j = 0; j < T; j++)
if (solved[i][j])
score[i] += value[j], num_solved[i]++;
iota(rankings, rankings + N, 0);
sort(rankings, rankings + N, [] (const int &x, const int &y) {return mp(score[x], mp(num_solved[x], -x)) > mp(score[y], mp(num_solved[y], -y));});
cout << score[P - 1] << ' ';
for (int i = 0; i < N; i++)
if (rankings[i] == P - 1)
return cout << i + 1 << '\n', 0;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |