# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1024136 | TheWilp | Carnival Tickets (IOI20_tickets) | C++14 | 1 ms | 1016 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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(true) {
int* x = new int[1000000];
}
}
}
int r = 0;
int j = 0;
std::vector<int> start_pos(N);
while(j < upper.size()) {
for(int q = 0;q < upper[j].size();q++) {
round[r].push_back(upper[j][q].value);
ans[upper[j][q].i][upper[j][q].j] = r;
++r;
r%=k;
}
start_pos[j] = r;
++j;
}
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;
}
Compilation message (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... |