Submission #92181

#TimeUsernameProblemLanguageResultExecution timeMemory
92181CPXGame (IOI14_game)C++14
Compilation error
0 ms0 KiB
#include "game.h"

bool vis[2000][2000];
int val[2000][2000];
int ctr[2000];

void initialize(int n) {

}

int hasEdge(int u, int v) {
    if(vis[u][v])return val[u][v];
    vis[u][v]=vis[v][u]=1;
    ctr[u]++;
    ctr[v]++;
    if(ctr[u]>n-2||ctr[v]>n-2){
        val[u][v]=val[v][u]=1;
        return 1;
    }else{
        val[u][v]=val[v][u]=0;
        return 0;
    }
}

Compilation message (stderr)

game.cpp: In function 'int hasEdge(int, int)':
game.cpp:16:15: error: 'n' was not declared in this scope
     if(ctr[u]>n-2||ctr[v]>n-2){
               ^
game.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^