이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "tickets.h"
using namespace std;
using ll = long long;
const int inf = 1e9;
#ifdef ONPC
#define debug(args...) {cout << "[" << #args << "]: "; debug_out(args);}
#else
#define debug(args...) {42;}
#endif
void debug_out() {
cout << endl;
}
template<typename H, typename... T>
void debug_out(vector<H> h, T... t) {
cout << "{";
for (H i : h) cout << i << ", ";
cout << "}, ";
debug_out(t...);
}
template<typename H, typename... T>
void debug_out(H h, T... t) {
cout << h << ", ";
debug_out(t...);
}
long long find_maximum(int k, std::vector<std::vector<int>> x) {
int n = x.size();
int m = x[0].size();
vector<int> use(n);
int c1 = 0;
for (int i = 0; i < n; i++) {
use[i] = k;
for (int j = 0; j < k; j++) {
c1 += x[i][j];
}
}
int good = n / 2 * k;
for (int i = 0; i < n; i++) {
while (c1 < good && use[i]) {
c1 += x[i][m - 1 - k + use[i]];
use[i]--;
}
}
vector type(n, vector<int>(m, 0));
vector<tuple<int,int,int>> big;
for (int i = 0; i < n; i++) {
for (int j = 0; j < use[i]; j++) {
big.emplace_back(x[i][j], i, j);
}
for (int j = 0; j < k - use[i]; j++) {
big.emplace_back(x[i][j], i, m-1-j);
}
}
sort(big.begin(), big.end());
for (int i = 0; i < n * k; i++) {
int a = get<1>(big[i]);
int b = get<2>(big[i]);
type[a][b] = i < n / 2 * k ? -1 : 1;
}
ll sum = 0;
vector ans(n, vector<int>(m, -1));
int round_low = 0;
for (int i = 0; i < n; i++) {
debug(i, ans[i]);
for (int j = 0; j < m; j++) {
if (type[i][j] == -1) {
sum -= x[i][j];
ans[i][j] = round_low++;
if (round_low >= k) round_low -= k;
}
}
int round = round_low;
for (int j = 0; j < m; j++) {
if (type[i][j] == 1) {
sum += x[i][j];
ans[i][j] = round++;
if (round >= k) round -= k;
}
}
debug(i, ans[i]);
}
allocate_tickets(ans);
return sum;
}
컴파일 시 표준 에러 (stderr) 메시지
tickets.cpp: In function 'long long int find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:10:25: warning: statement has no effect [-Wunused-value]
10 | #define debug(args...) {42;}
| ^~
tickets.cpp:71:9: note: in expansion of macro 'debug'
71 | debug(i, ans[i]);
| ^~~~~
tickets.cpp:10:25: warning: statement has no effect [-Wunused-value]
10 | #define debug(args...) {42;}
| ^~
tickets.cpp:87:9: note: in expansion of macro 'debug'
87 | debug(i, ans[i]);
| ^~~~~
# | 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... |