Submission #704617

#TimeUsernameProblemLanguageResultExecution timeMemory
704617bebra카니발 티켓 (IOI20_tickets)C++17
16 / 100
480 ms51796 KiB
#include "tickets.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
 
#define dbg(x) cerr << #x << ": " << x << endl;
 
 
ll find_maximum(int k, vector<vector<int>> x) {
    int n = x.size();
    int m = x[0].size();

    vector<vector<int>> res(n, vector<int>(m, -1));

    priority_queue<pair<int, int>> pq;

    vector<int> first(n, k - 1);
    vector<int> last(n, m - 1);

    ll ans = 0;
    for (int i = 0; i < n; ++i) {
        pq.emplace(x[i][first[i]] + x[i][last[i]], i);
        for (int j = 0; j < k; ++j) {
            res[i][j] = j;
            ans -= x[i][j];
        }
    }
    for (int t = 0; t < n * k / 2; ++t) {
        auto [value, i] = pq.top();
        pq.pop();
        ans += value;

        res[i][last[i]] = res[i][first[i]];
        res[i][first[i]] = -1;

        if (first[i] > 0) {
            --first[i];
            --last[i];
            pq.emplace(x[i][first[i]] + x[i][last[i]], i);
        }
    }
    
    allocate_tickets(res);
    return ans;
}
 
 
// int main() {
 //    int n, m, k;
 //    cin >> n >> m >> k;
 
 //    vector<vector<int>> a(n, vector<int>(m));
 //    for (int i = 0; i < n; ++i) {
 //        for (int j = 0; j < m; ++j) {
 //            cin >> a[i][j];
 //        }
 //    }
 
 //    cout << find_maximum(k, a) << '\n';
// }


/*
4 3 2
0 3 4 
0 0 2 
1 2 4 
0 4 4 

right:
15
*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...