Submission #251152

#TimeUsernameProblemLanguageResultExecution timeMemory
251152AaronNaiduDreaming (IOI13_dreaming)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include <"dreaming.h"> using namespace std; vector<pair<int, int>> graph[100001]; int travelTime(int n, int m, int l, vector<int> a, vector<int> b, vector<int> t) { int maxDist = 0; int secondMaxDist = 0; for (int i = 0; i < t.size(); i++) { if (t[i] > maxDist) { secondMaxDist = maxDist; maxDist = t[i]; } else if (t[i] > secondMaxDist) { secondMaxDist = t[i]; } } return max(maxDist, secondMaxDist + l); }

Compilation message (stderr)

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