# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
930381 | vjudge1 | Poi (IOI09_poi) | C++17 | 250 ms | 23888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<cstdio>
#include<algorithm>
#define UP(i,a,b) for(i=a;i<=(b);++i)
#define DN(i,a,b) for(i=a;i>=(b);--i)
using std::sort;
const int N=2e3+5;
int a[N][N],score[N],n,t,p;
struct node{
int sc,cnt,i;
node():sc(0),cnt(0){}
}b[N];
bool operator<(node a,node b){
if(a.sc!=b.sc){
return a.sc>b.sc;
}else if(a.cnt!=b.cnt){
return a.cnt>b.cnt;
}else{
return a.i<b.i;
}
}
int main(){
int i,j;
scanf("%d%d%d",&n,&t,&p);
UP(i,1,n){
UP(j,1,t){
scanf("%d",&a[i][j]);
score[j]+=!a[i][j];
b[i].cnt+=a[i][j];
}
b[i].i=i;
}
UP(i,1,n){
UP(j,1,t){
b[i].sc+=a[i][j]*score[j];
}
}
sort(b+1,b+n+1);
UP(i,1,n){
if(b[i].i==p){
printf("%d %d\n",b[i].sc,i);
break;
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |