Submission #594206

#TimeUsernameProblemLanguageResultExecution timeMemory
594206SlavicGHighway Tolls (IOI18_highway)C++17
Compilation error
0 ms0 KiB
#include "doll.h"
#include "bits/stdc++.h"
using namespace std;

#define    sz(a)      (int)a.size()


void create_circuit(int m, std::vector<int> a) {
    int n = a.size();
    std::vector<int> C(m + 1, 0);
    int lst = 0;
    for(int i = 0; i < n; ++i) {
        C[lst] = a[i];
        lst = a[i];
    }
    std::vector<int> X, Y;
    answer(C, X, Y);
}

Compilation message (stderr)

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