# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
571405 | amukkalir | Poi (IOI09_poi) | C++17 | 349 ms | 12048 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
const int nax = 2000;
int pt[nax+5];
signed main () {
int n, t, p;
scanf("%d %d %d", &n, &t, &p);
bool sc[n][t];
for(int i=0; i<n; i++) {
for(int j=0; j<t; j++) {
int x; scanf("%d", &x);
pt[j] += (x==0);
sc[i][j] = x;
}
}
//point, task, id
vector<pair<pair<int,int>, int>> ans;
for(int i=0; i<n; i++) {
int point = 0, task = 0, id = i+1;
for(int j=0; j<t; j++) {
task += sc[i][j];
if(sc[i][j]) point += pt[j];
}
//cout << id << " " << point << endl;
ans.push_back({{-point, -task}, id});
}
sort(ans.begin(), ans.end());
for(int i=0; i<n; i++) {
//cout << ans[i].first.first*-1 << " " << ans[i].first.second*-1 << ' ' << ans[i].second << endl;
if(ans[i].second == p) {
printf("%d %d", ans[i].first.first * -1, i+1);
return 0;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |