| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 933315 | SmuggingSpun | Game (IOI14_game) | C++14 | 3 ms | 11096 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;
const int lim = 1505;
int p[lim], sz[lim], cnt[lim][lim];
int find_set(int n){
return n == p[n] ? n : p[n] = find_set(p[n]);
}
void merge(int a, int b){
if((a = find_set(a)) != (b = find_set(b))){
if(sz[a] < sz[b]){
swap(a, b);
}
sz[p[b] = a] += sz[b];
}
}
void initialize(int n){
iota(p, p + n, 0);
fill(sz, sz + n, 1);
memset(cnt, 0, sizeof(cnt));
}
int hasEdge(int u, int v){
if(sz[u = find_set(u)] * sz[v = find_set(v)] - 1 == cnt[u][v] || u == v){
merge(u, v);
return 1;
}
cnt[u][v]++;
cnt[v][u]++;
return 0;
}Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
