Submission #1013519

#TimeUsernameProblemLanguageResultExecution timeMemory
1013519Error404Game (IOI14_game)C++17
Compilation error
0 ms0 KiB
void initialize(int n){ } int hasEdge(int u,int v){ if(u <v) swap(u,v); hold[u]++; if(hold[u]==u) return 1; else return 0; }

Compilation message (stderr)

game.cpp: In function 'int hasEdge(int, int)':
game.cpp:7:14: error: 'swap' was not declared in this scope
    7 |     if(u <v) swap(u,v);
      |              ^~~~
game.cpp:8:5: error: 'hold' was not declared in this scope
    8 |     hold[u]++;
      |     ^~~~
game.cpp:13:1: warning: control reaches end of non-void function [-Wreturn-type]
   13 | }
      | ^