Submission #417999

#TimeUsernameProblemLanguageResultExecution timeMemory
417999T0p_Game (IOI14_game)C++14
Compilation error
0 ms0 KiB
#include "game.h" #include <bits/stdc++.h> using namespace std; int n, edge, edge_not; int deg_not[1505]; int fp(int u) { return (u == pa[u]) ? u : pa[u] = fp(pa[u]); } void initialize(int N) { n = N; for(int i=0 ; i<n ; i++) pa[i] = i; edge = n-1; edge_not = (n*(n-1))/2 - edge; } int hasEdge(int u, int v) { if(edge_not > 0 && deg_not[u]+1 != n-1 && deg_not[v]+1 != n-1) { edge_not--; deg_not[u]++; deg_not[v]++; return 0; } else if(edge > 0) { edge--; return 1; } return 0; }

Compilation message (stderr)

game.cpp: In function 'int fp(int)':
game.cpp:10:15: error: 'pa' was not declared in this scope
   10 |  return (u == pa[u]) ? u : pa[u] = fp(pa[u]);
      |               ^~
game.cpp: In function 'void initialize(int)':
game.cpp:16:27: error: 'pa' was not declared in this scope
   16 |  for(int i=0 ; i<n ; i++) pa[i] = i;
      |                           ^~