이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
const int MAXN = 1500;
int par[MAXN];
int rk[MAXN];
int cnt[MAXN][MAXN];
int N;
int find(int x) {
if (par[x] == x) {
return x;
}
return (par[x] = find(par[x]));
}
void merge(int x, int y) {
int px = find(x);
int py = find(y);
if (px != py) {
par[px] = py;
rk[py] += rk[px];
}
}
void initialize(int n) {
N = n;
for (int i = 0; i < n; i++) {
par[i] = i;
rk[i] = 1;
}
}
int hasEdge(int u, int v) {
int px = find(u);
int py = find(v);
if (cnt[px][py] == rk[px]*rk[py]-1) {
for (int i = 0; i < N; i++) {
cnt[i][py] += cnt[i][px];
cnt[py][i] += cnt[px][i];
}
merge(px, py);
return 1;
}
else {
cnt[px][py]++;
cnt[py][px]++;
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... |