# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
402009 | Azimjon | Poi (IOI09_poi) | C++17 | 315 ms | 31724 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Muallif: Azimjon Mehmonali o'g'li
#include <bits/stdc++.h>
using namespace std;
#define int long long
const long double PI = 3.1415926535897;
const int mod = 1000000007LL;
const int INF = 1e18;
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, t, p;
cin >> n >> t >> p;
vector<vector<int>> g(n + 1, vector<int>(t + 1));
vector<int> tq(t + 1, n);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= t; j++) {
cin >> g[i][j];
tq[j] -= g[i][j];
}
}
vector<pair<pair<int, int>, int>> v;
for (int i = 1; i <= n; i++) {
int imq = 0, ims = 0;
for (int j = 1; j <= t; j++) {
ims += g[i][j];
imq += g[i][j] * tq[j];
}
v.push_back({{-imq, -ims}, i});
}
sort(v.begin(), v.end());
for (int i = 0; i < n; i++) {
if (v[i].second == p) {
cout << -v[i].first.first << " " << i + 1 << endl;
return 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |