# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1031588 | ezzzay | Poi (IOI09_poi) | C++14 | 365 ms | 39760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define pb push_back
const int N=3e3;
#define int long long
int a[N][N];
int pnt[N];
signed main(){
int n,m,p;
cin>>n>>m>>p;
for(int i=1;i<=m;i++){
pnt[i]=0;
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>a[i][j];
if(!a[i][j])pnt[j]++;
}
}
vector<pair<int,pair<int,int>>>v;
for(int i=1;i<=n;i++){
int s=0;
int h=0;
for(int j=1;j<=m;j++){
if(a[i][j]){
s+=pnt[j];
h++;
}
}
v.pb({-s,{-h,i}});
}
sort(v.begin(),v.end());
for(int i=0;i<n;i++){
if(v[i].ss.ss==p){
cout<<v[i].ff*-1<<" "<<i+1;
return 0;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |