# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1104651 | kungarooo | Game (IOI14_game) | C++14 | 1 ms | 336 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
int n;
vector<int> p;
void initialize(int n) {
::n=n;
for(int i=0;i<n;i++){
p.push_back(n-1);
}
}
int hasEdge(int u, int v) {
if(p[u]!=1&&p[v]!=1){
p[u]--;
p[v]--;
return 0;
}
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |