This documentation is automatically generated by online-judge-tools/verification-helper
// verification-helper: PROBLEM https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_1_A
use proconio::input;
use union_find::UnionFind;
fn main() {
input! {
n: usize,
q: usize,
query: [(usize, usize, usize); q],
}
let mut uf = UnionFind::new(n);
for (query, x, y) in query {
match query {
0 => {
uf.merge(x, y);
}
1 => {
println!("{}", if uf.same(x, y) { 1 } else { 0 });
}
_ => unreachable!(),
}
}
}
Traceback (most recent call last):
File "/opt/hostedtoolcache/Python/3.11.12/x64/lib/python3.11/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/hostedtoolcache/Python/3.11.12/x64/lib/python3.11/site-packages/onlinejudge_verify/languages/rust.py", line 288, in bundle
raise NotImplementedError
NotImplementedError