제출 #623244

#제출 시각아이디문제언어결과실행 시간메모리
6232441bin카니발 티켓 (IOI20_tickets)C++14
컴파일 에러
0 ms0 KiB
//#include <tickets.h>
#include <bits/stdc++.h>

using namespace std;

#define all(v) v.begin(), v.end()
typedef long long ll;
const int NMAX = 2e3 + 5;

ll find_maximum(int k, vector<vector<int>> x){
    int n = x.size();
    int m = x[0].size();
    vector<vector<int>> s(n, vector<int> (m));
    vector<pair<ll, int>> v;
    vector<int> cnt(n);
    ll ans = 0;
    for(int i = 0; i < n; i++)
        for(int j = k - 1, l = m - 1; j >= 0; j--, l--){
            ans -= x[i][j];
            v.emplace_back(x[i][j] + x[i][l], i);
        }
    
    sort(all(v));
    for(int i = n * k / 2; i < n * k; i++){
        auto& [t, y] = v[i];
        ans += t; cnt[y]++;
    }
    priority_queue<pair<int, int>> mn, mx;
    for(int i = 0; i < n; i++) {
        mn.emplace(k - 1 - cnt[i], i);
        mx.emplace(-(m - 1), i);
    }
    
    for(int i = 0; i < k; i++){
        vector<pair<int, int>> tmn, tmx;
        for(int j = 0; j < n / 2; j++){
            auto[t, y] = mn.top(); mn.pop();
            s[y][t] = i;
            tmn.emplace_back(--t, y);
        }
        for(int j = 0; j < n / 2; j++){
            auto[t, y] = mx.top(); mx.pop(); t = -t;
            s[y][t] = i;
            t--;
            tmn.emplace_back(-t, y);
        }
        for(auto p : tmn) mn.emplace(p);
        for(auto p : tmx) mx.emplace(p);
    }
    allocate_tickets(s);
    return ans;
}

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

tickets.cpp: In function 'll find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:25:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   25 |         auto& [t, y] = v[i];
      |               ^
tickets.cpp:37:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   37 |             auto[t, y] = mn.top(); mn.pop();
      |                 ^
tickets.cpp:42:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   42 |             auto[t, y] = mx.top(); mx.pop(); t = -t;
      |                 ^
tickets.cpp:50:5: error: 'allocate_tickets' was not declared in this scope
   50 |     allocate_tickets(s);
      |     ^~~~~~~~~~~~~~~~