Submission #1016817

#TimeUsernameProblemLanguageResultExecution timeMemory
1016817vivkostovGame (IOI14_game)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #define endl '\n' #include "game.h" using namespace std; int br[2005][2005],n; void initialize() { n=N; for(int i=1;i<=n;i++) { for(int j=1;j<=n;j++) { br[i][j]=1; } } } int hasEdge(int u,int v) { for(int i=1;i<=n;++) { br[i][u]++; br[i][v]++; if(br[i][u]==n-1||br[i][v]==n-1)return 1; else return 0; } }

Compilation message (stderr)

game.cpp: In function 'void initialize()':
game.cpp:8:7: error: 'N' was not declared in this scope
    8 |     n=N;
      |       ^
game.cpp: In function 'int hasEdge(int, int)':
game.cpp:19:24: error: expected primary-expression before ')' token
   19 |     for(int i=1;i<=n;++)
      |                        ^
game.cpp:26:1: warning: control reaches end of non-void function [-Wreturn-type]
   26 | }
      | ^