| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1369076 | eyadooz | Game (IOI14_game) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include"game.h"
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int) (x).size()
#define endl '\n'
void initialize(int n);
int cnt[200005]={};
int hasEdge(int u, int v)
{
cnt[max(u, v)]++;
return cnt[max(u, v)]==max(u, v);
}
