이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "tickets.h"
#include <bits/stdc++.h>
using namespace std;
long long find_maximum(int k, vector<vector<int>> x) {
int n = x.size();
int m = x[0].size();
vector<vector<int>> ans(n, vector<int>(m, -1));
priority_queue<pair<int, int>> pq;
for (int i = 0; i < n; ++i) {
pq.emplace(x[i][m - 1] + x[i][k - 1], i);
}
vector<int> pos(n, m - 1);
vector<int> minus(n, k - 1);
long long res = 0;
for (int i = 0; i < n; ++i) for (int j = 0; j < k; ++j) res -= x[i][j];
for (int it = 0; it < n * k / 2; ++it) {
int val, i; tie(val, i) = pq.top(); pq.pop();
--pos[i]; --minus[i];
if (pos[i] >= m - k && minus[i] >= 0) pq.emplace(x[i][pos[i]] + x[i][minus[i]], i);
res += val;
// printf("val = %d, i = %d\n", val, i);
}
// cerr << res << endl;
/*
for (int i = 0; i < n; ++i) {
// cerr << i << ": ";
for (int j = 0; j <= k - (m - pos[i]); ++j) {
res -= x[i][j];
// cerr << j << ' ';
}
// cerr << endl;
}
*/
auto zeros = minus;
vector<int> pos0(n), pos1(n);
for (int i = 0; i < n; ++i) {
pos[i] = max(pos[i], -1);
pos0[i] = 0;
pos1[i] = pos[i] + 1;
zeros[i] += 1;
// cerr << i << ' ' << zeros[i] << ' ' << pos1[i] << endl;
}
auto Comp = [&](int a, int b) {
return zeros[a] > zeros[b];
};
vector<int> order(n);
iota(order.begin(), order.end(), 0);
for (int it = 0; it < k; ++it) {
sort(order.begin(), order.end(), [&](int a, int b) {
return zeros[a] > zeros[b];
});
int bal = 0;
for (int i : order) {
if (bal < n / 2) {
ans[i][pos0[i]++] = it;
--zeros[i];
++bal;
} else {
ans[i][pos1[i]++] = it;
}
}
}
allocate_tickets(ans);
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
tickets.cpp: In function 'long long int find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:50:8: warning: variable 'Comp' set but not used [-Wunused-but-set-variable]
50 | auto Comp = [&](int a, int b) {
| ^~~~
# | 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... |