# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
539165 | astoria | Poi (IOI09_poi) | C++14 | 582 ms | 23760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
int N,T,P;
cin >> N >> T >> P;
P--;
int taskssolved[N][T];
int score[T] = {0};
for (int i=0; i<N; i++){
for (int j=0; j<T; j++){
cin >> taskssolved[i][j];
if (taskssolved[i][j] == 0) score[j]++;
}
}
int scores[N] = {0};
for (int i=0; i<N; i++){
for (int j=0; j<T; j++){
if (taskssolved[i][j] == 1) scores[i] += score[j];
}
}
int numsolves[N] = {0};
for (int i=0; i<N; i++){
for (int j=0; j<T; j++){
if (taskssolved[i][j] == 1) numsolves[i]++;
}
}
for (int i=0; i<N; i++){
scores[i] = 0-scores[i];
numsolves[i] = 0-numsolves[i];
}
pair<int,pair<int,int> > alltheinfo[N]; // <score, <numsolves,id> >
for (int i=0; i<N; i++){
alltheinfo[i] = make_pair(scores[i], make_pair(numsolves[i],i));
}
sort(alltheinfo,alltheinfo+N);
for (int i=0; i<N; i++){
if (alltheinfo[i].second.second == P){
cout << 0-alltheinfo[i].first << " " << (i+1);
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |