結果
問題 | No.1059 素敵な集合 |
ユーザー | phspls |
提出日時 | 2023-01-11 23:57:58 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 1,350 bytes |
コンパイル時間 | 10,652 ms |
コンパイル使用メモリ | 403,444 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-02 01:30:08 |
合計ジャッジ時間 | 11,892 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 31 ms
6,812 KB |
testcase_02 | AC | 5 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 8 ms
6,944 KB |
testcase_11 | AC | 4 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 8 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 15 ms
6,944 KB |
testcase_16 | AC | 4 ms
6,940 KB |
testcase_17 | AC | 4 ms
6,940 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | AC | 41 ms
6,944 KB |
testcase_20 | AC | 38 ms
6,940 KB |
testcase_21 | AC | 13 ms
6,940 KB |
コンパイルメッセージ
warning: field `n` is never read --> src/main.rs:3:5 | 2 | struct UnionFind { | --------- field in this struct 3 | n: usize, | ^ | = note: `#[warn(dead_code)]` on by default
ソースコード
struct UnionFind { n: usize, parents: Vec<usize>, } impl UnionFind { fn new(n: usize) -> Self { UnionFind { n: n, parents: (0..n).collect(), } } fn equiv(&mut self, a: usize, b: usize) -> bool { self.find(a) == self.find(b) } fn unite(&mut self, a: usize, b: usize) { if self.equiv(a, b) { return; } let (a, b) = (a.min(b), a.max(b)); let x = self.parents[a]; let y = self.parents[b]; self.parents[y] = self.parents[x]; } fn find(&mut self, a: usize) -> usize { if self.parents[a] == a { return a; } let p = self.find(self.parents[a]); self.parents[a] = p; p } } fn main() { let mut lr = String::new(); std::io::stdin().read_line(&mut lr).ok(); let lr: Vec<usize> = lr.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let l = lr[0]; let r = lr[1]; let mut uf = UnionFind::new(r-l+1); for i in l..r { for times in 2.. { let val = i * times; if val > r { break; } uf.unite(i-l, val-l); } } let mut result = 0usize; for i in 0..r-l { if uf.find(i) != uf.find(i+1) { uf.unite(i, i+1); result += 1; } } println!("{}", result); }