# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1080411 | vjudge1 | Poi (IOI09_poi) | C++17 | 438 ms | 23980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct part {
int id;
int sc;
int sv;
};
bool comp(const part&a, const part&b) {
if (a.sc != b.sc) return a.sc > b.sc;
if (a.sv != b.sv) return a.sc > b.sc;
return a.id < b.id;
}
int main() {
int n, t, p;
cin >> n >> t >> p;
vector<vector<int>> v(n, vector<int>(t));
vector<int> sum(t, 0);
vector<part> pr(n);
for (int i = 0; i < n; i++) {
for (int j = 0; j < t; j++) {
cin >> v[i][j];
}
}
for (int j = 0; j < t; j++) {
for (int i = 0; i < n; i++) {
if (v[i][j] == 0) sum[j]++;
}
}
for (int i = 0; i < n; i++) {
pr[i].id = i + 1;
pr[i].sc = 0;
pr[i].sv = 0;
for (int j = 0; j < t; j++) {
if (v[i][j] == 1) {
pr[i].sc += sum[j];
pr[i].sv++;
}
}
}
sort(pr.begin(), pr.end(), comp);
int fsc = pr[p-1].sc;
int rank = 1;
for (int i = 0; i < n; i++) {
if (pr[i].id == p) {
rank = i + 1;
break;
}
}
cout << fsc << ' ' << rank;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |