제출 #83344

#제출 시각아이디문제언어결과실행 시간메모리
83344farukkastamonuda게임 (IOI14_game)C++14
100 / 100
423 ms15672 KiB
#include "game.h"
#include <bits/stdc++.h>
#define li 1505
#define inf 2000001000
#define md 1000000007
#define lo long long
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define ii pair<lo int,lo int>
using namespace std;
int cnt[li],N;
void initialize(int n){
	N=n;
}
int hasEdge(int u,int v){
	if(u>v) swap(u,v);
	return ++cnt[v]==v;
}
//~ int main(){
	//~ initialize(4);
	//~ return 0;
//~ }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...