Submission #622322

#TimeUsernameProblemLanguageResultExecution timeMemory
622322happypotatoConnecting Supertrees (IOI20_supertrees)C++17
Compilation error
0 ms0 KiB
#include "tickets.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define ff first
#define ss second
#define pb push_back
//
const ll MAX = 1e18;
vector<vector<int>> a;
int n, m, k;
ll st1() {
    vector<vector<int>> allo;
    allo.resize(n, {0});
    allocate_tickets(allo);
    vector<ll> shit(n);
    for (int i = 0; i < n; i++) shit[i] = a[i][0];
    sort(shit.begin(), shit.end());
    ll ans = MAX, cur = 0;
    for (int i = 0; i < n; i++) {
        cur += shit[i];
    }
    int delta = -n;
    for (int i = 0; i < n; i++) {
        cur += (shit[i] - (i == 0 ? 0 : shit[i - 1])) * delta;
        ans = min(ans, cur);
        delta += 2;
    }
    return ans;
}
long long find_maximum(int K, vector<vector<int>> x) {
    n = x.size(); m = x[0].size(); k = K; a = x;
    if (m == 1) return st1();
}

Compilation message (stderr)

supertrees.cpp:1:10: fatal error: tickets.h: No such file or directory
    1 | #include "tickets.h"
      |          ^~~~~~~~~~~
compilation terminated.