제출 #799706

#제출 시각아이디문제언어결과실행 시간메모리
799706IvanJ게임 (IOI14_game)C++17
0 / 100
1 ms212 KiB
#include "game.h"
#include<bits/stdc++.h>

using namespace std;

const int maxn = 1505;

int n;
int c[maxn];

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

int hasEdge(int u, int v) {
    if(u > v) swap(u, v);
    c[u]++;
    if(c[u] > u) return 1;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...