# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
275322 | Bill_00 | Poi (IOI09_poi) | C++14 | 301 ms | 23928 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long ll;
const ll inf=1000000000000000000;
#define fr(i,c,d) for(ll i=c;i<=d;i++)
#define MOD 1000000007
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define pp push
using namespace std;
const int sz=173;
string str(string x,int l,int r){
string h;
for(int i=l;i<=r;i++){
h+=x[i];
}
return h;
}
int a[2001][2001],b[2001]={0};
int main(){
//int color[200001];
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,t,p;
cin >> n >> t >> p;
for(int i=1;i<=n;i++){
for(int j=1;j<=t;j++){
cin >> a[i][j];
if(a[i][j]==0){
b[j]++;
}
}
}
vector<pair<pair<int,int>,int> >standings;
for(int i=1;i<=n;i++){
int ans=0,solved=0;
for(int j=1;j<=t;j++){
if(a[i][j]==1){
ans+=b[j];
solved++;
}
}
standings.pb(mp(mp(ans,solved),-i));
}
sort(standings.begin(),standings.end());
int len=standings.size();
for(int i=len-1;i>=0;i--){
if(standings[i].ss==-p){
cout << standings[i].ff.ff << ' ' << len-i;
break;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |