제출 #92181

#제출 시각아이디문제언어결과실행 시간메모리
92181CPX게임 (IOI14_game)C++14
컴파일 에러
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;
    }
}

컴파일 시 표준 에러 (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]
 }
 ^