Submission #372748

#TimeUsernameProblemLanguageResultExecution timeMemory
372748Drew_Traffic (IOI10_traffic)C++14
Compilation error
0 ms0 KiB
#include <traffic.h> #include <grader.h> #include <vector> #include <functional> using namespace std; #define pb push_back int LocateCentre(int N, int P[], int S[], int D[]) { vector<vector<int>> adj(N); for (int i = 0; i < N-1; ++i) adj[S[i]].pb(D[i]), adj[D[i]].pb(S[i]); vector<int> sz(N, 0); vector<bool> vst(N, false); function<int(int)> dfs = [&](int node) { vst[node] = true; sz[node] = P[node]; for (int to : adj[node]) { if (!vst[to]) sz[node] += sz[to]; } return sz[node]; }; dfs(0); int res = 2e9 + 7; for (int node = 0; node < N; ++node) { int tmp = 0; for (int to : adj[node]) { int ctr = sz[to]; if (sz[to] > sz[node]) ctr = sz[0] - sz[node]; tmp = max(tmp, ctr); } res = min(res, tmp); } return res; }

Compilation message (stderr)

traffic.cpp:2:10: fatal error: grader.h: No such file or directory
    2 | #include <grader.h>
      |          ^~~~~~~~~~
compilation terminated.