# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
696552 | Hacv16 | Poi (IOI09_poi) | C++17 | 216 ms | 64324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX = 2e6 + 15;
const int INF = 0x3f3f3f3f;
int n, t, p, value[MAX], score[MAX];
vector<int> solve[MAX];
int32_t main(void){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> t >> p;
for(int i = 1; i <= t; i++) value[i] = n;
for(int i = 1; i <= n; i++){
for(int k = 1; k <= t; k++){
ll x; cin >> x;
if(x){ value[k]--; solve[i].push_back(k); }
}
}
for(int i = 1; i <= n; i++)
for(auto x : solve[i])
score[i] += value[x];
vector<int> rank(n);
iota(rank.begin(), rank.end(), 1);
sort(rank.begin(), rank.end(), [ & ](int x, int y) { return score[x] > score[y]; });
for(int i = 0; i < rank.size(); i++)
if(rank[i] == p){ cout << score[p] << ' ' << i + 1 << '\n'; exit(0); }
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |