Submission #702728

#TimeUsernameProblemLanguageResultExecution timeMemory
702728math_rabbit_1028Game (IOI14_game)C++14
100 / 100
338 ms16316 KiB
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
int cnt[1515];
 
void initialize(int n) {
    for (int i = 0; i < n; i++) cnt[i] = 0;
}
 
int hasEdge(int u, int v) {
    if (u > v) swap(u, v);
    cnt[v]++;
    if (cnt[v] == v) return 1;
    else return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...