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>
using namespace std;
//#define int long long 
#define ff first
#define ss second
#define pii pair<int, int>
#define all(x) x.begin(), x.end()
#define rep(i, a, b) for (int i = (int)a; i <= (int)b; ++i)
#define rep1(i, a, b) for (int i = (int)a; i >= (int)b; --i)
#define mp make_pair
#define vii vector<vector<int>>
#define ll long long 
const int N = 2e5 + 5;  
const ll inf = 2e9 + 5;
void allocate_tickets(vii a);
// void allocate_tickets(vii a) {
//     int n = a.size(), m = a[0].size();
//     rep(i, 0, n - 1) {
//         rep(j, 0, m - 1) {
//             cout << a[i][j] << ' ';
//         }
//         cout << '\n';
//     }
// }
struct ticket{
    int color, order, value;
};
bool operator < (const ticket &x, const ticket &y) {
    return x.value < y.value;
}  
ll find_maximum(int k, vii a) {
    function<int()> sub1 = [&]() {
        int n = a.size();
        vector<int> v(n);
        rep(i, 0, n - 1) v[i] = a[i][0];
        sort(all(v));
        int bound = v[n / 2];
        int prize = 0;
        rep(i, 0, n - 1) prize += abs(v[i] - bound);
        rep(i, 0, n - 1) a[i][0] = 0;
        allocate_tickets(a);
        return prize;
    };
    function<ll()> sub2 = [&]() {
        int n = a.size(), m = a[0].size();
        vii allo(n, vector<int> (m));
        
        ll prize = 0;
        vector<ticket> Replace;
        vector<int> Plus(n + 1);
        rep(i, 0, n - 1) {
            rep1(j, m - 1, m - k) {
                prize += a[i][j];
                allo[i][j] = 1;
            }
            rep(j, 0, k - 1) {
                ticket tmp;
                tmp.color = i;
                tmp.order = j;
                tmp.value = a[i][j] + a[i][m - k + j];
                Replace.push_back(tmp);
            }
        }
        sort(all(Replace));
        
        //cout<<"prize,m="<<prize<<' '<<m<<'\n';
        rep(i, 1, k * (n / 2)) {
            auto [color, order, value] = Replace[i - 1];
            //cout<<"123="<<color<<' '<<order<<' '<<value<<'\n';
            prize -= value;
            --Plus[color];            
            allo[color][m - k + order] = 0;
            allo[color][order] = -1;
        }
        vector<int> v(n);
        rep(i, 0, n - 1) v[i] = i;
        sort(all(v), [&](int x, int y) {
            return Plus[x] < Plus[y];
        });
        vector<int> cnt(k);
        // rep(i, 0, n - 1) {
        //     rep(j, 0, m - 1) {
        //         cout << allo[i][j] << ' ';
        //     }
        //     cout << '\n';
        // }
        rep(ii, 0, n - 1) {
            int i = v[ii];
            int start = 0;
            while (start < k && cnt[start] >= n / 2) {++start;}
            //cout<<"i,start="<<i<<' '<<start<<'\n';
            vector<bool> used(m);
            rep(j, 0, m - 1) {
                if (allo[i][j] != -1) break;
                if (start >= k) break;
                allo[i][j] = start + 1;
                ++cnt[start];
                used[start] = 1;
                ++start;
            }
            start = 0;
            rep1(j, m - 1, 0) {
                if (allo[i][j] != 1) break;
                while (start < k && used[start]) ++ start;
                if (start >= k) break;
                allo[i][j] = start + 1;
                ++start;
            }
        }
        
        rep(i, 0, n - 1) rep(j, 0, m - 1) --allo[i][j];
    
        allocate_tickets(allo);
        return prize;
    };
    return sub2();
}
// signed main() {
//     //freopen("ticket.inp", "r", stdin);
//     int n, m, k; cin >> n >> m >> k;
//     vii a(n, vector<int> (m));
//     rep(i, 0, n - 1) rep(j, 0, m - 1) cin >> a[i][j];   
//     cout << find_maximum(k, a);
// }
| # | 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... |