# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
663284 | esomer | Poi (IOI09_poi) | C++17 | 277 ms | 23892 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"
const int MOD = 1e9 + 7;
void solve(){
int n, t, p; cin >> n >> t >> p; p--;
vector<int> scores(t, n);
vector<vector<int>> v(n, vector<int>(t));
for(int i = 0; i < n; i++){
for(int j = 0; j < t; j++){
int x; cin >> x;
if(x == 1) scores[j]--;
v[i][j] = x;
}
}
vector<pair<int, int>> res;
for(int i = 0; i < n; i++){
int score = 0;
for(int j = 0; j < t; j++){
if(v[i][j]) score += scores[j];
}
res.push_back({score, i});
}
sort(res.begin(), res.end());
for(int i = 0; i < n; i++){
if(res[i].second == p){
cout << res[i].first << " "<< i + 1 << endl;
return;
}
}
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
//freopen("inpt.txt", "r", stdin);
//freopen("out.txt", "w", stdout);
//int tt; cin >> tt;
int tt = 1;
for(int t = 1; t <= tt; t++){
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |