답안 #13334

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
13334 2015-02-12T09:55:19 Z ggoh 게임 (IOI14_game) C++
컴파일 오류
0 ms 0 KB
#include<cstdio>
int w[1501];
void initialize(int n);
int hasEdge(int u,int v)
{
	if(w[u]==n-2||w[v]==n-2)
	{
		return 1;
	}
	else
	{
		w[u]++;
		w[v]++;
		return 0;
	}
}

Compilation message

game.cpp: In function ‘int hasEdge(int, int)’:
game.cpp:6:11: error: ‘n’ was not declared in this scope
  if(w[u]==n-2||w[v]==n-2)
           ^
game.cpp:16:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^