이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <set>
#include <tuple>
#include <map>
#include <queue>
using namespace std;
typedef long long ll;
typedef long double ld;
#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0);
const ll SZ = 2000;
ll dsu[SZ], add[SZ][SZ], nn;
int par(int v) {
if (dsu[v] == v) return dsu[v];
return dsu[v] = par(dsu[v]);
}
void uni(int v, int u) {
v = par(v);
u = par(u);
if (u != v) dsu[u] = v;
}
void initialize(int n) {
for (int i = 0; i < n; i++) dsu[i] = i;
nn = n;
}
int hasEdge(int u, int v) {
if (u > v) swap(u, v);
int n = nn;
int cnt = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (par(u) == par(i) && par(j) == par(v)) {
if (add[i][j] == 0) cnt++;
}
}
}
if (cnt == 1) {
uni(u, v);
return 1;
}
add[u][v] = 1;
add[v][u] = 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... |