제출 #835232

#제출 시각아이디문제언어결과실행 시간메모리
835232gustason게임 (IOI14_game)C++14
100 / 100
239 ms9116 KiB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;

constexpr int nax = 1501;
int N;

void initialize(int n) {
	N = n;
	
}

int cnt[nax];

int hasEdge(int u, int v) {
	if (u > v) {
		swap(u, v);
	}
	cnt[v]++;
    return cnt[v] == v;
}

#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...