# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
406383 | saarang123 | Poi (IOI09_poi) | C++17 | 337 ms | 23836 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
//#define int long long
std::mt19937 rng((int) std::chrono::steady_clock::now().time_since_epoch().count());
signed main() {
std::ios::sync_with_stdio(0);
std::cout.tie(0);
std::cin.tie(0);
int n, t, p;
cin >> n >> t >> p;
vector<int> scores(t, n);
vector<vector<int>> a(n, vector<int> (t));
for(int i = 0; i < n; i++)
for(int j = 0; j < t; j++) {
cin >> a[i][j];
scores[j] -= a[i][j];
}
vector<array<int, 3>> rank;
for(int i = 0; i < n; i++) {
int sum = 0, cnt = 0;
for(int j = 0; j < t; j++)
if(a[i][j])
sum += scores[j], cnt++;
rank.push_back({sum, cnt, i + 1});
}
sort(rank.begin(), rank.end(), [&] (array<int, 3> x, array<int, 3> y) {
if(x[0] != y[0])
return x[0] > y[0];
if(x[1] != y[1])
return x[1] > y[1];
return x[2] < y[2];
});
int position = -1, sum = 0;
for(int i = 0; i < n; i++)
if(rank[i][2] == p)
position = i + 1, sum = rank[i][0];
cout << sum << ' ' << position << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |