Submission #228463

#TimeUsernameProblemLanguageResultExecution timeMemory
228463bharat2002Game (IOI14_game)C++14
0 / 100
8 ms384 KiB
/*input

*/
#include<bits/stdc++.h>
#include "game.h"
using namespace std;
const int N=5e3 +10;
int deg[N];
void initialize(int n)
{
	for(int i=1;i<=n;i++) deg[i]=n-1;
}
int hasEdge(int u, int v)
{
	deg[u]--;deg[v]--;
	if(deg[u]==0||deg[v]==0) return 1;return 0;
}

Compilation message (stderr)

game.cpp: In function 'int hasEdge(int, int)':
game.cpp:16:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
  if(deg[u]==0||deg[v]==0) return 1;return 0;
  ^~
game.cpp:16:36: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  if(deg[u]==0||deg[v]==0) return 1;return 0;
                                    ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...