Submission #223785

#TimeUsernameProblemLanguageResultExecution timeMemory
223785kshitij_sodaniGame (IOI14_game)C++17
0 / 100
5 ms256 KiB
#include <iostream>
#include <bits/stdc++.h>
#include <game.h>
using namespace std;
#define a first
#define b second
#define pb push_back

typedef long long int llo;
int tot;
void initialize(int n){
	tot=(n*(n-1))/2;
}
int hasEdge(int u, int v){
	if(tot==1){
		tot-=1;
		return 1;
	}

	else{
		tot-=1;
		return 0;
	}
}
/*int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);



	return 0;
}*/
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...