이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ff first
#define sc second
#define pb push_back
#define in insert
int N;
ll ans[1501][1501];
ll p[1501];
void make_set(ll v) {
p[v] = v;
for (int i = 0; i < N; i++)
ans[v][i] = 1;
}
ll find_par(ll v) {
if (p[v] == v) return v;
else return p[v] = find_par(p[v]);
}
ll union_sets (ll a, ll b) {
a = find_par(a); b = find_par(b);
if (a == b) return 0;
if (ans[a][b] == 1) {
ans[a][b]--;
ans[b][a]--;
for (int i = 0; i < N; i++){
ans[a][i] += ans[b][i];
ans[i][a] += ans[i][b];
ans[b][i] = 0;
ans[i][b] = 0;
}
p[b] = a;
return 1;
}
ans[a][b]--;
ans[b][a]--;
return 0;
}
void initialize(int n) {
N = n;
for (int i = 0; i < n; i++)
make_set(i);
}
int hasEdge(int u, int v) {
return union_sets(u , v);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |