제출 #478895

#제출 시각아이디문제언어결과실행 시간메모리
478895khoabrightCarnival Tickets (IOI20_tickets)C++17
27 / 100
560 ms51324 KiB
#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> Time(n + 1), Plus(n + 1);

        rep(i, 0, n - 1) {
            pii maxi = {-1, -1}, mini = {inf, inf};

            rep1(j, m - 1, m - k) {
                prize += a[i][j];
                allo[i][j] = inf;
            }

            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);
        sort(all(v), [&](int x, int y) {
            return Plus[x] < Plus[y];
        });

        rep(i, 0, n / 2 - 1) {
            int tme = 0;
            rep(j, 0, m - 1) {
                if (allo[i][j]) {
                    allo[i][j] = ++tme;
                }
            }
        }

        rep1(i, n - 1, n / 2) {
            int tme = 0;
            rep1(j, m - 1, 0) {
                if (allo[i][j]) {
                    allo[i][j] = ++tme;
                }
            }
        }

        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);
// }

컴파일 시 표준 에러 (stderr) 메시지

tickets.cpp: In lambda function:
tickets.cpp:60:17: warning: variable 'maxi' set but not used [-Wunused-but-set-variable]
   60 |             pii maxi = {-1, -1}, mini = {inf, inf};
      |                 ^~~~
tickets.cpp:60:34: warning: variable 'mini' set but not used [-Wunused-but-set-variable]
   60 |             pii maxi = {-1, -1}, mini = {inf, inf};
      |                                  ^~~~
#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...