# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1024132 | TheWilp | 카니발 티켓 (IOI20_tickets) | C++14 | 2 ms | 860 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "tickets.h"
#include <vector>
#include <algorithm>
using ll = long long;
class name {
public:
int value;
int i,j;
bool operator<(const name& other) const {
return value < other.value;
}
};
long long find_maximum(int k, std::vector<std::vector<int>> x) {
int N = x.size();
int M = x[0].size();
std::vector<std::vector<int>> ans(N,std::vector<int>(M,-1));
std::vector<int> group(N,0);
std::vector<std::vector<int>> round(k);
std::vector<name> s;
for(int q = 0;q < N;q++) {
for(int w = 0;w < M;w++) {
name n;
n.value = x[q][w];
n.i = q;
n.j = w;
s.push_back(n);
}
}
std::sort(s.begin(),s.end());
int i = s.size() - 1;
int t = 0;
std::vector<std::vector<name>> upper(N);
while(i >= 0 && t < k * N / 2) {
name e = s[i--];
if(group[e.i] >= k) continue;
upper[e.i].push_back(e);
group[e.i]++;
t++;
}
i = 0;
t = 0;
std::vector<std::vector<name>> lower(N);
for(int q = 0;q < N;q++) {
while(group[q] < k) {
name n;
n.i = q;
n.j = group[q];
n.value = x[q][group[q]++];
lower[q].push_back(n);
}
}
for(int q = 0;q < N;q++) {
if(upper[q].size() + lower[q].size() != k) {
while(1) {
int* a = new int[10000000000];
}
}
}
int r = 0;
int j = 0;
std::vector<int> start_pos(N);
while(true) {
if (upper[j].size() == 0) {
start_pos[j] = r;
++j;
if(j == N) break;
}
if(upper[j].size() == 0) continue;
round[r].push_back(upper[j].back().value);
ans[upper[j].back().i][upper[j].back().j] = r;
upper[j].pop_back();
++r;
r%=k;
}
r = 0;
j = 0;
while(j < lower.size()) {
r = start_pos[j];
for(int q = 0;q < lower[j].size();q++) {
round[r].push_back(lower[j][q].value);
ans[lower[j][q].i][lower[j][q].j] = r;
++r;
r%=k;
}
++j;
}
ll res = 0;
for(int q = 0;q < k;q++) {
std::sort(round[q].begin(),round[q].end());
for(int w = 0;w < N / 2;w++) {
res -= round[q][w];
}
for(int w = N / 2;w < N;w++) {
res += round[q][w];
}
}
allocate_tickets(ans);
return res;
}
컴파일 시 표준 에러 (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... |