# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
788394 | canadavid1 | Poi (IOI09_poi) | C++14 | 205 ms | 8752 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define all(x) begin(x),end(x)
signed main()
{
cin.tie(nullptr)->sync_with_stdio(false);
int N,T,P;
cin >> N >> T >> P;
vector<vector<bool>> s(N,vector<bool>(T,false));
for(auto && i : s) for(int j = 0; j < T; j++) {int a; cin >> a; i[j] = a;}
vector<int> solveNum(T,0);
for(auto && i : s) for(int j = 0; j < T; j++) if(!i[j]) solveNum[j]++;
vector<tuple<int,int,int>> scores(N,{0,0,0});
for(int i = 0; i < N; i++)
{
for(int j = 0; j < T; j++) if (s[i][j]) {get<0>(scores[i])-=solveNum[j];get<1>(scores[i])--;}
get<2>(scores[i]) = i+1; // person id
}
sort(all(scores));
// find P
int i;
for(i = 0; get<2>(scores[i])!=P;i++);
cout << -get<0>(scores[i]) << " " << i+1 << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |