This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/unionfind"
#include "../../../src/template/template.hpp"
#include "../../../src/data_structure/union_find.hpp"
int main(void) {
int n, q;
cin >> n >> q;
UnionFind uf(n);
while(q--) {
int t, u, v;
cin >> t >> u >> v;
if(t == 0) {
uf.merge(u, v);
} else {
cout << uf.same(u, v) << '\n';
}
}
}
#line 1 "verify/library_checker/data_structure/unionfind.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/unionfind"
#line 2 "src/template/template.hpp"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<long long, long long>;
#define rep(i, a, b) for(long long i = (a); i < (b); ++i)
#define rrep(i, a, b) for(long long i = (a); i >= (b); --i)
constexpr long long inf = 4e18;
struct SetupIO {
SetupIO() {
ios::sync_with_stdio(0);
cin.tie(0);
cout << fixed << setprecision(30);
}
} setup_io;
#line 3 "src/data_structure/union_find.hpp"
struct UnionFind {
UnionFind(const int N)
: n(N), data(N, -1) {}
int merge(const int a, const int b) {
assert(0 <= a and a < n);
assert(0 <= b and b < n);
int x = leader(a), y = leader(b);
if(x == y) return x;
if(-data[x] < -data[y]) swap(x, y);
data[x] += data[y];
data[y] = x;
return x;
}
bool same(const int a, const int b) {
assert(0 <= a and a < n);
assert(0 <= b and b < n);
return leader(a) == leader(b);
}
int leader(const int a) {
assert(0 <= a and a < n);
if(data[a] < 0) return a;
return data[a] = leader(data[a]);
}
int size(const int a) {
assert(0 <= a and a < n);
return -data[leader(a)];
}
vector<vector<int>> groups() {
vector<int> leader_buf(n), group_size(n);
for(int i = 0; i < n; ++i) {
leader_buf[i] = leader(i);
++group_size[leader_buf[i]];
}
vector<vector<int>> result(n);
for(int i = 0; i < n; ++i) {
result[i].reserve(group_size[i]);
}
for(int i = 0; i < n; ++i) {
result[leader_buf[i]].push_back(i);
}
result.erase(remove_if(result.begin(), result.end(), [&](const vector<int>& v) { return v.empty(); }), result.end());
return result;
}
private:
int n;
vector<int> data;
};
#line 4 "verify/library_checker/data_structure/unionfind.test.cpp"
int main(void) {
int n, q;
cin >> n >> q;
UnionFind uf(n);
while(q--) {
int t, u, v;
cin >> t >> u >> v;
if(t == 0) {
uf.merge(u, v);
} else {
cout << uf.same(u, v) << '\n';
}
}
}