Submission #799706

#TimeUsernameProblemLanguageResultExecution timeMemory
799706IvanJGame (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...