답안 #379853

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
379853 2021-03-19T14:11:48 Z Mounir 게임 (IOI14_game) C++14
컴파일 오류
0 ms 0 KB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;

const int N = 2000;
int nFaits[N];

void initialize(int n) {
	nNoeuds = n;
	for (int noeud = 0; noeud < nNoeuds; ++noeud)
		nFaits[noeud] = 0;
}

int hasEdge(int u, int v) {
    u = max(u, v);
    nFaits[u]++;
    if (nFaits[u] == u)
    	return 1;
    return 0;
}

Compilation message

game.cpp: In function 'void initialize(int)':
game.cpp:9:2: error: 'nNoeuds' was not declared in this scope
    9 |  nNoeuds = n;
      |  ^~~~~~~