Submission #571218

#TimeUsernameProblemLanguageResultExecution timeMemory
571218beaconmcDreaming (IOI13_dreaming)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #pragma GCC optimize("O3") typedef long long ll; #define FOR(i,x,y) for(ll i=x; i<y; i++) #define FORNEG(i,x,y) for(ll i=x; i>y; i--) #define double long double #include "secret.h" using namespace std; vector<pair<ll, ll>> edges[100005]; int travelTime(int n, int m, int L, int a[], int b[], int t[]){ FOR(i,0,m){ edges[a[i]].push_back({b[i], t[i]}); edges[b[i]].push_back({a[i], t[i]}); } }

Compilation message (stderr)

dreaming.cpp:7:10: fatal error: secret.h: No such file or directory
    7 | #include "secret.h"
      |          ^~~~~~~~~~
compilation terminated.