# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1007467 | u_suck_o | 카니발 티켓 (IOI20_tickets) | C++17 | 1 ms | 5212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "tickets.h"
#include "bits/stdc++.h"
#define SZ 1505
using namespace std;
bool large[SZ][SZ], small[SZ][SZ];
int cnt[SZ];
long long find_maximum(int k, vector<vector<int>> x) {
int n = x.size();
int m = x[0].size();
vector<vector<int>> answer = vector<vector<int>>(n, vector<int>(m, -1));
vector<pair<int, pair<int, int>>> v; //{number, {ticket color, ticket id}}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
v.push_back({x[i][j], {i, j}});
}
}
sort(v.begin(), v.end());
long long ans = 0;
int count = 0;
for (int i = v.size()-1; i >= 0; i--) {
if (count == n/2 * k) break;
if (cnt[v[i].second.first] < k) {
ans += v[i].first;
large[v[i].second.first][v[i].second.second] = true;
cnt[v[i].second.first]++;
count++;
}
}
count = 0;
for (int i = 0; i < v.size(); i++) {
if (count == n/2 * k) break;
if (cnt[v[i].second.first] < k && large[v[i].second.first][v[i].second.second] == false) {
ans -= v[i].first;
small[v[i].second.first][v[i].second.second] = true;
cnt[v[i].second.first]++;
count++;
}
}
set<pair<int,int>> rounds;
for (int i = 0; i < k; i++)
rounds.insert({0, i});
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (small[i][j] || large[i][j]) {
auto p = *rounds.begin();
answer[i][j] = p.second;
rounds.erase(rounds.begin());
rounds.insert({p.first+1, p.second});
}
}
}
allocate_tickets(answer);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |