# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
698127 | europium | Poi (IOI09_poi) | C++17 | 206 ms | 16076 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// accepted - 12/2/23
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <numeric>
#include <cmath>
#include <iterator>
#include <set>
#include <map>
#include <math.h>
#include <iomanip>
#include <unordered_set>
#include <queue>
#include <climits>
using namespace std;
// clang++ -std=c++17 IOI09_POI.cpp && ./a.out
using ll = long long;
void solve(){
int n, t, p;
cin >> n >> t >> p;
vector<int> score(t);
vector<vector<int>> c (n, vector<int>(t));
for (int i = 0; i < n; i++){
for (int j = 0; j < t; j++){
cin >> c[i][j];
if (c[i][j] == 0) score[j]++;
}
}
vector<tuple<int,int,int>> rank; // score, tasks solved, ID;
for (int i = 0; i < n; i++){
int s = 0, solved = 0; // s is score
for (int j = 0; j < t; j++){
if (c[i][j] == 1){
s += score[j];
solved++;
}
}
// to account for sorting ID in increasing order (not decreasing order like score or solved)
rank.push_back({s, solved, n - (i + 1)});
}
sort(rank.rbegin(), rank.rend());
int cnt = 0;
for (auto [s, solved, id] : rank){
cnt++;
if (id == (n - p)){
cout << s << ' ' << cnt << '\n';
return;
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
// freopen("input.txt", "r", stdin);
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |