# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
300259 | fpc_coder | Poi (IOI09_poi) | C++17 | 1122 ms | 16244 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 2005;
int status[N][N], task_score[N];
pair<int, int> contestant[N];
bool cmp(pair<int, int> a, pair<int, int> b) {
if (a.first != b.first) return a.first > b.first;
return a.second < b.second;
}
int main() {
int n, t, p;
cin >> n >> t >> p;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= t; j++) cin >> status[i][j];
}
for (int j = 1; j <= t; j++) {
for (int i = 1; i <= n; i++) task_score[j] += (status[i][j] == 0);
}
for (int i = 1; i <= n; i++) {
contestant[i].first = 0;
contestant[i].second = i;
for (int j = 1; j <= t; j++) {
if (status[i][j]) contestant[i].first += task_score[j];
}
}
sort(contestant + 1, contestant + n + 1, cmp);
for (int i = 1; i <= n; i++) {
if (contestant[i].second == p) {
cout << contestant[i].first << ' ' << contestant[i].second << '\n';
return 0;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |