# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
440174 | dxz05 | Poi (IOI09_poi) | C++14 | 814 ms | 11992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2022;
bool solved[MAXN][MAXN];
int cnt[MAXN];
pair<pair<int, int>, int> a[MAXN];
int main(){
int N, M, P;
cin >> N >> M >> P;
fill(cnt, cnt + M, N);
for (int i = 0; i < N; i++){
for (int j = 0; j < M; j++){
cin >> solved[i][j];
cnt[j] -= solved[i][j];
}
}
for (int i = 0; i < N; i++){
for (int j = 0; j < M; j++){
if (solved[i][j]){
a[i].first.first += cnt[j];
a[i].first.second++;
}
}
a[i].second = i + 1;
}
sort(a, a + N);
for (int i = 0; i < N; i++){
if (a[i].second == P){
cout << a[i].first.first << ' ' << i + 1 << endl;
return 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |