# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
483544 | victorang1 | Poi (IOI09_poi) | C++14 | 526 ms | 16452 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//
// main.cpp
// sorting
//
// Created by Team SSG on 30/10/21.
//
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
using namespace std;
struct Player {
int score;
int numberOfProblemSolved;
};
bool mapComparator(pair<int, Player> &a, pair<int, Player> &b) {
if (a.second.score > b.second.score) return true;
else if (a.second.score < b.second.score) return false;
if (a.second.numberOfProblemSolved > b.second.numberOfProblemSolved) return true;
else if (a.second.numberOfProblemSolved < b.second.numberOfProblemSolved) return false;
if (a.first < b.first) return true;
return false;
}
vector<pair<int, Player>> sort(map<int, Player> &userScores) {
vector<pair<int, Player>> temp;
for (auto& it : userScores) {
temp.push_back(it);
}
sort(temp.begin(), temp.end(), mapComparator);
return temp;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
int N, T, P;
cin >> N >> T >> P;
vector<vector<int>> tasks(N, vector<int>(T));
map<int, int> taskScores;
for (int i = 0; i < N; ++i) {
for (int j = 0; j < T; ++j) {
cin >> tasks[i][j];
if (tasks[i][j] == 0) {
taskScores[j] += 1;
}
}
}
map<int, Player> userScores;
for (int i = 0; i < N; ++i) {
for (int j = 0; j < T; ++j) {
if (tasks[i][j] == 1) {
userScores[i].score += taskScores[j];
userScores[i].numberOfProblemSolved++;
}
}
}
vector<pair<int, Player>> sortedPlayer = sort(userScores);
for (auto& it : sortedPlayer) {
cout << it.second.score << ' ' << it.first << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |