# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
322015 | aaronhma | Poi (IOI09_poi) | C++17 | 353 ms | 8940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vll;
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
struct Person
{
int val;
int id;
};
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, t, p, num;
cin >> n >> t >> p;
unordered_map<int, int> points;
vector<vector<bool>> solved(n, vector<bool>(t));
for (int i = 0; i < n; i++)
{
for (int j = 0; j < t; j++)
{
cin >> num;
if (num == 0)
{
points[j]++;
solved[i][j] = false;
}
else
{
solved[i][j] = true;
}
}
}
vector<Person> people(n);
for (int i = 0; i < n; i++)
{
people[i].id = i + 1;
for (int j = 0; j < t; j++)
{
if (solved[i][j])
{
people[i].val += points[j];
}
}
}
sort(people.begin(), people.end(), [](const Person &a, const Person &b) {
if (a.val == b.val)
return a.id < b.id;
return a.val > b.val;
});
int score = -1, rank = -1;
for (int i = 0; i < n; i++)
{
if (people[i].id == p)
{
score = people[i].val;
rank = i + 1;
}
}
cout << score << " " << rank << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |