# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1020083 | AliHasanli | Poi (IOI09_poi) | C++17 | 368 ms | 12112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,t,P;
cin>>n>>t>>P;
int cnt[t];
bool a[n][t];
for(int i=0;i<t;i++)cnt[i]=0;
pair<int,pair<int,int>>p[n];
for(int i=0;i<n;i++)
{
p[i].second.second=i+1;
p[i].second.first=0;
for(int j=0;j<t;j++)
{
cin>>a[i][j];
if(!a[i][j])cnt[j]++;
else p[i].second.first++;
}
}
for(int i=0;i<n;i++)
for(int j=0;j<t;j++)
p[i].first+=cnt[j]*a[i][j];
sort(p,p+n);
for(int i=n-1;i>=0;i--)
if(p[i].second.second==P)
cout<<p[i].first<<" "<<i+1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |