Submission #990533

#TimeUsernameProblemLanguageResultExecution timeMemory
990533LibGame (IOI14_game)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
int q[10003];
int con[10003];
int N;
void initialize(int n){
  N=n-1;
}
int hasEdge(int u, int v){
  q[u]++;
  q[v]++;
  int ret=0;
  if(q[u]==N||q[v]==n||con[u]||con[v]){
    ret=1;
    con[u]=1;
    con[v]=1;
  }
  return ret;
}

Compilation message (stderr)

game.cpp: In function 'int hasEdge(int, int)':
game.cpp:13:21: error: 'n' was not declared in this scope
   13 |   if(q[u]==N||q[v]==n||con[u]||con[v]){
      |                     ^