結果

問題 No.1059 素敵な集合
ユーザー phsplsphspls
提出日時 2023-02-01 23:30:59
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 2,124 bytes
コンパイル時間 12,161 ms
コンパイル使用メモリ 400,684 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-01 16:25:37
合計ジャッジ時間 13,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 18 ms
6,528 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 14 ms
5,760 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 5 ms
5,760 KB
testcase_19 AC 19 ms
6,528 KB
testcase_20 AC 20 ms
6,528 KB
testcase_21 AC 15 ms
6,144 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

warning: methods `addval` and `getval` are never used
  --> src/main.rs:47:8
   |
9  | impl UnionFind {
   | -------------- methods in this implementation
...
47 |     fn addval(&mut self, idx: usize, val: isize) {
   |        ^^^^^^
...
52 |     fn getval(&self, idx: usize) -> isize {
   |        ^^^^^^

ソースコード

diff #

struct UnionFind {
    n: usize,
    parents: Vec<usize>,
    size: Vec<usize>,
    vals: Vec<isize>,
}

impl UnionFind {
    fn new(n: usize) -> Self {
        UnionFind {
            n: n,
            parents: (0..n).collect(),
            size: vec![1usize; n],
            vals: vec![0isize; n],
        }
    }

    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.find(a);
        let y = self.find(b);
        if self.size[x] <= self.size[y] {
            self.size[y] += self.size[x];
            self.size[x] = 0;
            self.vals[x] -= self.vals[y];
            self.parents[x] = self.parents[y];
        } else {
            self.size[x] += self.size[y];
            self.size[y] = 0;
            self.vals[y] -= self.vals[x];
            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]);
        p
    }

    fn addval(&mut self, idx: usize, val: isize) {
        let idx = self.find(idx);
        self.vals[idx] += val;
    }

    fn getval(&self, idx: usize) -> isize {
        let mut ret = self.vals[idx];
        let mut idx = idx;
        while self.parents[idx] != idx {
            idx = self.parents[idx];
            ret += self.vals[idx];
        }
        ret
    }
}

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+1);
    for i in l..r {
        for j in 1.. {
            let val = i*j;
            if val > r { break; }
            uf.unite(i, val);
        }
    }
    let mut result = 0usize;
    for i in l..r {
        if !uf.equiv(i, i+1) {
            result += 1;
            uf.unite(i, i+1);
        }
    }
    println!("{}", result);
}
0