# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
991040 | SoSmolSten | Poi (IOI09_poi) | C++17 | 176 ms | 4224 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int N = 2e3 + 10;
ll score[N];
bool f[N][N];
int main (int argc, char const *argv[]) {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n, t, p; cin >> n >> t >> p;
for(int i = 1; i <= t; ++i) score[i] = n;
for(int i = 1; i <= n; ++i){
for(int j = 1; j <= t; ++j){
cin >> f[i][j];
score[j] -= f[i][j];
}
}
vector<pair<ll, int>> scoreboard;
for(int i = 1; i <= n; ++i){
ll sum = 0;
for(int j = 1; j <= t; ++j){
sum += f[i][j] * score[j];
}
scoreboard.push_back({sum, i});
}
sort(scoreboard.begin(), scoreboard.end(), [](pair<ll, int> a, pair<ll, int> b){
if(a.first == b.first) return a.second < b.second;
return a.first > b.first;
});
for(int i = 0; i < n; ++i){
if(scoreboard[i].second == p){
cout << scoreboard[i].first << ' ' << i + 1;
return 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |