This documentation is automatically generated by online-judge-tools/verification-helper
#include "DataStructure/UnionFind.hpp"素集合の族を扱うデータ構造です。
扱う要素数を $N$ とすると、2 つの集合の併合や集合に含まれる要素数の取得、ある要素が含まれる集合の取得を、ならし $\Theta(\alpha(N))$ で行うことができます。
ここで $\alpha(N)$ はアッカーマン関数の逆関数を表します。
UnionFind(size_t n)
    size_t size(size_t x)
    size_t find(size_t x)
    void unite(size_t x, size_t y)
    bool issame(size_t x, size_t y)
    要素数 $n$ で初期化します。 はじめ、すべての要素は自身のみからなる集合に属しています。
計算量
以下、要素数を $N$ とします。 また、アッカーマン関数の逆関数を $\alpha(N)$ と表します。
要素 $x$ が属する集合の要素数を返します。
制約
計算量
要素 $x$ が属する集合の代表元を返します。
unite を行うことにより代表元が変化する場合があります。
制約
計算量
要素 $x$ が属する集合と要素 $y$ が属する集合を併合します。 要素 $x, y$ が同じ集合に属していた場合は何も行いません。
制約
計算量
要素 $x, y$ が同じ集合に属しているか判定します。 同じ集合に属しているなら $true$ 、違う集合に属しているなら $false$ を返します。
制約
計算量
#include <bits/stdc++.h>
#include "DataStructure/UnionFind.hpp"
using namespace std;
int main() {
	constexpr int N = 5;
	UnionFind uf(N);
	
	cout << "representative: " << uf.find(0) << ", " << uf.find(1) << endl; // 0, 1
	cout << "size: " << uf.size(0) << ", " << uf.size(1) << endl; // 1, 1
	cout << boolalpha << "issame(0, 1): " << uf.issame(0, 1) << endl; // false
	uf.unite(0, 1);
	cout << "representative: " << uf.find(0) << ", " << uf.find(1) << endl; // 0 0 (or 1 1)
	cout << "size: " << uf.size(0) << ", " << uf.size(1) << endl; // 2, 2
	cout << boolalpha << "issame(0, 1): " << uf.issame(0, 1) << endl; // true
	
	uf.unite(2, 3);
	uf.unite(2, 4);
	cout << "size(0): " << uf.size(0) << endl; // 2
	cout << "size(2): " << uf.size(2) << endl; // 3
	uf.unite(1, 3);
	cout << "size(0) = size(4): " << uf.size(0) << ", " << uf.size(4) << endl; // 5, 5
}
TODO: size の test を追加する
2020/04/22: https://en.wikipedia.org/wiki/Disjoint-set_data_structure
2020/04/22: https://qiita.com/kopricky/items/3e5847ab1451fe990367
#ifndef INCLUDE_GUARD_UNION_FIND_HPP
#define INCLUDE_GUARD_UNION_FIND_HPP
#include <vector>
#include <utility>
#include <cassert>
/**
 * @brief https://tkmst201.github.io/Library/DataStructure/UnionFind.hpp
 */
struct UnionFind {
	using size_type = std::size_t;
	
private:
	size_type n;
	std::vector<int> dat;
	
public:
	explicit UnionFind(size_type n) : n(n), dat(n, -1) {}
	
	size_type size(size_type x) noexcept {
		assert(x < n);
		return -dat[find(x)];
	}
	
	size_type find(size_type x) noexcept {
		assert(x < n);
		if (dat[x] < 0) return x;
		return dat[x] = find(dat[x]);
	}
	
	void unite(size_type x, size_type y) noexcept {
		assert(x < n);
		assert(y < n);
		x = find(x);
		y = find(y);
		if (x == y) return;
		if (dat[x] < dat[y]) std::swap(x, y);
		dat[y] += dat[x];
		dat[x] = y;
	}
	
	bool issame(size_type x, size_type y) noexcept {
		assert(x < n);
		assert(y < n);
		return find(x) == find(y);
	}
};
#endif // INCLUDE_GUARD_UNION_FIND_HPP#line 1 "DataStructure/UnionFind.hpp"
#include <vector>
#include <utility>
#include <cassert>
/**
 * @brief https://tkmst201.github.io/Library/DataStructure/UnionFind.hpp
 */
struct UnionFind {
	using size_type = std::size_t;
	
private:
	size_type n;
	std::vector<int> dat;
	
public:
	explicit UnionFind(size_type n) : n(n), dat(n, -1) {}
	
	size_type size(size_type x) noexcept {
		assert(x < n);
		return -dat[find(x)];
	}
	
	size_type find(size_type x) noexcept {
		assert(x < n);
		if (dat[x] < 0) return x;
		return dat[x] = find(dat[x]);
	}
	
	void unite(size_type x, size_type y) noexcept {
		assert(x < n);
		assert(y < n);
		x = find(x);
		y = find(y);
		if (x == y) return;
		if (dat[x] < dat[y]) std::swap(x, y);
		dat[y] += dat[x];
		dat[x] = y;
	}
	
	bool issame(size_type x, size_type y) noexcept {
		assert(x < n);
		assert(y < n);
		return find(x) == find(y);
	}
};