結果
問題 | No.2912 0次パーシステントホモロジー |
ユーザー | Yukino DX. |
提出日時 | 2024-11-06 14:36:57 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,495 bytes |
コンパイル時間 | 14,689 ms |
コンパイル使用メモリ | 380,300 KB |
実行使用メモリ | 14,552 KB |
最終ジャッジ日時 | 2024-11-06 14:37:17 |
合計ジャッジ時間 | 19,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
14,552 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 1 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 18 ms
6,816 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
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]]; uf.unite(u, v); id += 1; } ans[i] = uf.nofcc(); } for a in ans { println!("{}", a); } } use unionfindtree::*; mod unionfindtree { pub struct UnionFindTree { par: Vec<usize>, rank: Vec<usize>, size: Vec<usize>, } impl UnionFindTree { pub fn new(n: usize) -> Self { Self { par: (0..n).collect::<Vec<_>>(), rank: vec![0; n], size: vec![1; 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; } 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; } } #[allow(dead_code)] pub fn nofcc(&mut self) -> usize { let n = self.par.len(); (0..n) .map(|v| self.root(v)) .collect::<std::collections::HashSet<usize>>() .len() } } }