Submission #251157

#TimeUsernameProblemLanguageResultExecution timeMemory
251157AaronNaidu꿈 (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, int[] a, int[] b, int[] t) { int maxDist = 0; int secondMaxDist = 0; for (int i = 0; i < m; 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:7:43: error: expected ',' or '...' before 'a'
 int travelTime(int n, int m, int l, int[] a, int[] b, int[] t) {
                                           ^
dreaming.cpp: In function 'int travelTime(int, int, int, int*)':
dreaming.cpp:12:13: error: 't' was not declared in this scope
         if (t[i] > maxDist)
             ^