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<bits/stdc++.h>
#include "tickets.h"
using namespace std;
using ll = long long;
const int inf = 1e9;
#define debug(args...) cout << "[" << #args << "]: "; debug_out(args...);
void debug_out() {
cout << endl;
}
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();
assert(m == k);
vector<tuple<int,int,int>> big;
big.reserve(n * m);
for (int i = 0; i < n; i++) {
for (int j = 0; j < m;j++)
big.push_back({x[i][j], i, j});
}
sort(big.begin(), big.end());
vector low(n, vector<int>(m, 0));
for (int i = 0; i < n * m / 2; i++) {
low[get<1>(big[i])][get<2>(big[i])] = 1;
}
ll sum = 0;
vector ans(n, vector<int>(m, 0));
int round_low = 0, round_high = n-1;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (low[i][j]) {
sum -= x[i][j];
ans[i][j] = round_low++;
if (round_low >= m) round_low -= m;
}
else {
sum += x[i][j];
ans[i][j] = round_high--;
if (round_high < 0) round_high += m;
}
}
}
allocate_tickets(ans);
return sum;
}
# | 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... |