Submission #62398

#TimeUsernameProblemLanguageResultExecution timeMemory
62398evpipisGame (IOI14_game)C++11
Compilation error
0 ms0 KiB
#include "game.h" #include <bits/stdc++.h> const int len = 1505; int cnt[len]; void initialize(int n){ for (int i = 0; i < n; i++) cnt[i] = i; } int hasEdge(int u, int v){ cnt[max(v, u)]--; return (cnt[max(v, u)] == 0); }

Compilation message (stderr)

game.cpp: In function 'int hasEdge(int, int)':
game.cpp:13:9: error: 'max' was not declared in this scope
     cnt[max(v, u)]--;
         ^~~
game.cpp:13:9: note: suggested alternative:
In file included from /usr/include/c++/7/algorithm:62:0,
                 from /usr/include/x86_64-linux-gnu/c++/7/bits/stdc++.h:65,
                 from game.cpp:2:
/usr/include/c++/7/bits/stl_algo.h:3468:5: note:   'std::max'
     max(initializer_list<_Tp> __l, _Compare __comp)
     ^~~