結果

問題 No.2946 Puyo
ユーザー MichirakaraMichirakara
提出日時 2024-09-25 09:02:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,705 bytes
コンパイル時間 14,641 ms
コンパイル使用メモリ 383,456 KB
実行使用メモリ 22,492 KB
最終ジャッジ日時 2024-09-25 09:02:50
合計ジャッジ時間 21,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 90 ms
22,440 KB
testcase_04 AC 90 ms
22,492 KB
testcase_05 AC 91 ms
22,468 KB
testcase_06 AC 93 ms
22,440 KB
testcase_07 AC 88 ms
22,376 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 32 ms
8,448 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 47 ms
12,164 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 11 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 16 ms
6,940 KB
testcase_17 AC 52 ms
13,372 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 22 ms
6,940 KB
testcase_20 AC 32 ms
7,808 KB
testcase_21 AC 49 ms
12,096 KB
testcase_22 AC 8 ms
6,944 KB
testcase_23 AC 28 ms
7,296 KB
testcase_24 AC 62 ms
14,840 KB
testcase_25 AC 54 ms
13,108 KB
testcase_26 AC 60 ms
14,416 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 48 ms
11,808 KB
testcase_29 AC 64 ms
16,356 KB
testcase_30 AC 36 ms
9,644 KB
testcase_31 AC 52 ms
13,612 KB
testcase_32 AC 53 ms
13,724 KB
testcase_33 AC 45 ms
12,132 KB
testcase_34 AC 69 ms
16,616 KB
testcase_35 AC 54 ms
14,180 KB
testcase_36 AC 56 ms
14,372 KB
testcase_37 AC 60 ms
15,764 KB
testcase_38 AC 43 ms
11,744 KB
testcase_39 AC 41 ms
11,252 KB
testcase_40 AC 26 ms
7,936 KB
testcase_41 AC 56 ms
15,124 KB
testcase_42 AC 51 ms
13,916 KB
testcase_43 AC 43 ms
11,248 KB
testcase_44 AC 52 ms
13,560 KB
testcase_45 AC 43 ms
11,544 KB
testcase_46 AC 28 ms
7,936 KB
testcase_47 AC 42 ms
11,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;
use proconio::marker::Chars;

struct UnionFind {
    uf: Vec<usize>,
    size: Vec<usize>,
}

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

    fn find(&mut self, x: usize) -> usize {
        if self.uf[x] == x {
            return x;
        }
        self.uf[x] = self.find(self.uf[x]);
        self.uf[x]
    }

    fn merge(&mut self, x: usize, y: usize) {
        let x = self.find(x);
        let y = self.find(y);
        if x == y {
            return;
        }
        if self.size[x] > self.size[y] {
            self.size[x] += self.size[y];
            self.uf[y] = self.uf[x];
        } else {
            self.size[y] += self.size[x];
            self.uf[x] = self.uf[y];
        }
    }

    fn size(&mut self, x: usize) -> usize {
        let x = self.find(x);
        self.size[x]
    }
}

fn main() {
    input! {
        h:usize,
        w:usize,
        g:[Chars;h],
    }

    let mut uf = UnionFind::new(h * w);

    for i in 0..h {
        for j in 0..w {
            if g[i][j] == '.' {
                continue;
            }
            if i + 1 < h && g[i][j] == g[i + 1][j] {
                uf.merge(i * w + j, (i + 1) * w + j);
            }
            if j + 1 < w && g[i][j] == g[i][j + 1] {
                uf.merge(i * w + j, i * w + j + 1);
            }
        }
    }

    for (i, tmp) in g.iter().enumerate() {
        for (j, item) in tmp.iter().enumerate() {
            if uf.size(i * w + j) >= 4 {
                print!(".");
            } else {
                print!("{}", item);
            }
        }
        println!();
    }
}
0