結果
問題 | No.2912 0次パーシステントホモロジー |
ユーザー | Yukino DX. |
提出日時 | 2024-11-06 14:44:10 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 191 ms / 2,000 ms |
コード長 | 2,421 bytes |
コンパイル時間 | 13,704 ms |
コンパイル使用メモリ | 384,480 KB |
実行使用メモリ | 12,304 KB |
最終ジャッジ日時 | 2024-11-06 14:44:27 |
合計ジャッジ時間 | 16,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 16 ms
5,248 KB |
testcase_16 | AC | 135 ms
7,192 KB |
testcase_17 | AC | 55 ms
6,912 KB |
testcase_18 | AC | 80 ms
7,936 KB |
testcase_19 | AC | 187 ms
12,304 KB |
testcase_20 | AC | 191 ms
12,304 KB |
testcase_21 | AC | 172 ms
12,288 KB |
testcase_22 | AC | 171 ms
12,288 KB |
ソースコード
use proconio::input; fn main() { input! { n:usize, m:usize, uvw:[(usize,usize,usize);m], t:usize, r:[usize;t], } let mut ids_sorted_r = (0..t).collect::<Vec<_>>(); ids_sorted_r.sort_by_key(|&i| r[i]); let mut ids_sorted_w = (0..m).collect::<Vec<_>>(); ids_sorted_w.sort_by_key(|&i| uvw[i].2); let mut ans = vec![0; t]; let mut uf = UnionFindTree::new(n); let mut id = 0; for &i in ids_sorted_r.iter() { while id < m && uvw[ids_sorted_w[id]].2 <= r[i] { let (u, v, _) = uvw[ids_sorted_w[id]]; if !uf.same(u, v) { uf.unite(u, v); } id += 1; } ans[i] = uf.ncc(); } for a in ans { println!("{}", a); } } use unionfindtree::*; mod unionfindtree { pub struct UnionFindTree { par: Vec<usize>, rank: Vec<usize>, size: Vec<usize>, ncc: usize, } impl UnionFindTree { pub fn new(n: usize) -> Self { Self { par: (0..n).collect::<Vec<_>>(), rank: vec![0; n], size: vec![1; n], ncc: n, } } #[allow(dead_code)] pub fn same(&mut self, v1: usize, v2: usize) -> bool { self.root(v1) == self.root(v2) } #[allow(dead_code)] pub fn size(&mut self, v: usize) -> usize { let v_root = self.root(v); self.size[v_root] } #[allow(dead_code)] pub fn root(&mut self, v: usize) -> usize { if self.par[v] != v { self.par[v] = self.root(self.par[v]); } self.par[v] } pub fn unite(&mut self, v1: usize, v2: usize) { let mut v1_root = self.root(v1); let mut v2_root = self.root(v2); if v1_root == v2_root { return; } self.ncc -= 1; if self.rank[v1_root] < self.rank[v2_root] { std::mem::swap(&mut v1_root, &mut v2_root); } self.par[v2_root] = v1_root; self.size[v1_root] += self.size[v2_root]; if self.rank[v1_root] == self.rank[v2_root] { self.rank[v1_root] += 1; } } pub fn ncc(&self) -> usize { self.ncc } } }