| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1166579 | HappyCapybara | Game (IOI14_game) | C++17 | 0 ms | 328 KiB |
#include "game.h"
#include<bits/stdc++.h>
using namespace std;
vector<int> deg;
void initialize(int n){
deg.resize(n, n-1);
}
int hasEdge(int u, int v){
deg[u]--;
deg[v]--;
if (!deg[u] || !deg[v]) return 1;
return 0;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
