This documentation is automatically generated by online-judge-tools/verification-helper
#include "other/int_alias.cpp"
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <iterator>
#include <limits>
#include <vector>
class partially_persistent_union_find {
public:
using time_type = usize;
private:
class node_type {
public:
time_type time;
usize parent;
usize size;
node_type(const time_type time, const usize parent, const usize size)
: time(time), parent(parent), size(size) {}
};
class sh_node {
public:
time_type time;
usize size;
sh_node(const time_type time, const usize size) : time(time), size(size) {}
};
std::vector<node_type> tree;
std::vector<std::vector<sh_node>> size_history;
time_type time_count;
usize size() const { return tree.size(); }
public:
partially_persistent_union_find() = default;
explicit partially_persistent_union_find(const usize n)
: tree(n, node_type(std::numeric_limits<time_type>::max(), 0, 1)),
size_history(n, std::vector<sh_node>({sh_node(0, 1)})), time_count(0) {
for (usize i = 0; i != n; i += 1)
tree[i].parent = i;
}
time_type now() const { return time_count; }
usize find(const time_type time, usize x) const {
assert(x < size());
while (tree[x].time <= time)
x = tree[x].parent;
return x;
}
bool same(const time_type time, const usize x, const usize y) const {
assert(x < size());
assert(y < size());
return find(time, x) == find(time, y);
}
usize size(const time_type time, usize x) const {
assert(x < size());
x = find(time, x);
return std::prev(std::partition_point(
size_history[x].cbegin(), size_history[x].cend(),
[time](const sh_node &h) { return h.time <= time; }))
->size;
}
time_type unite(usize x, usize y) {
assert(x < tree.size());
assert(y < tree.size());
x = find(now(), x);
y = find(now(), y);
time_count += 1;
if (x != y) {
if (tree[x].size < tree[y].size)
std::swap(x, y);
tree[x].size += tree[y].size;
tree[y].parent = x;
tree[y].time = time_count;
size_history[x].push_back(sh_node(time_count, tree[x].size));
}
return time_count - 1;
}
};
/**
* @brief Partially Persistent Union Find
*/
#line 2 "other/int_alias.cpp"
#include <cstddef>
#include <cstdint>
using i32 = std::int32_t;
using i64 = std::int64_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;
using isize = std::ptrdiff_t;
using usize = std::size_t;
#line 2 "data_structure/partially_persistent_union_find.cpp"
#include <algorithm>
#include <cassert>
#line 6 "data_structure/partially_persistent_union_find.cpp"
#include <iterator>
#include <limits>
#include <vector>
class partially_persistent_union_find {
public:
using time_type = usize;
private:
class node_type {
public:
time_type time;
usize parent;
usize size;
node_type(const time_type time, const usize parent, const usize size)
: time(time), parent(parent), size(size) {}
};
class sh_node {
public:
time_type time;
usize size;
sh_node(const time_type time, const usize size) : time(time), size(size) {}
};
std::vector<node_type> tree;
std::vector<std::vector<sh_node>> size_history;
time_type time_count;
usize size() const { return tree.size(); }
public:
partially_persistent_union_find() = default;
explicit partially_persistent_union_find(const usize n)
: tree(n, node_type(std::numeric_limits<time_type>::max(), 0, 1)),
size_history(n, std::vector<sh_node>({sh_node(0, 1)})), time_count(0) {
for (usize i = 0; i != n; i += 1)
tree[i].parent = i;
}
time_type now() const { return time_count; }
usize find(const time_type time, usize x) const {
assert(x < size());
while (tree[x].time <= time)
x = tree[x].parent;
return x;
}
bool same(const time_type time, const usize x, const usize y) const {
assert(x < size());
assert(y < size());
return find(time, x) == find(time, y);
}
usize size(const time_type time, usize x) const {
assert(x < size());
x = find(time, x);
return std::prev(std::partition_point(
size_history[x].cbegin(), size_history[x].cend(),
[time](const sh_node &h) { return h.time <= time; }))
->size;
}
time_type unite(usize x, usize y) {
assert(x < tree.size());
assert(y < tree.size());
x = find(now(), x);
y = find(now(), y);
time_count += 1;
if (x != y) {
if (tree[x].size < tree[y].size)
std::swap(x, y);
tree[x].size += tree[y].size;
tree[y].parent = x;
tree[y].time = time_count;
size_history[x].push_back(sh_node(time_count, tree[x].size));
}
return time_count - 1;
}
};
/**
* @brief Partially Persistent Union Find
*/