結果

問題 No.2946 Puyo
ユーザー naut3naut3
提出日時 2024-10-26 10:39:13
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 2,375 bytes
コンパイル時間 13,178 ms
コンパイル使用メモリ 401,920 KB
実行使用メモリ 10,788 KB
最終ジャッジ日時 2024-10-26 10:39:34
合計ジャッジ時間 18,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 0 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 97 ms
10,780 KB
testcase_04 AC 96 ms
10,784 KB
testcase_05 AC 96 ms
10,788 KB
testcase_06 AC 99 ms
10,740 KB
testcase_07 AC 96 ms
10,752 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 32 ms
6,816 KB
testcase_10 AC 7 ms
6,816 KB
testcase_11 AC 50 ms
6,820 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 6 ms
6,816 KB
testcase_16 AC 18 ms
6,816 KB
testcase_17 AC 57 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 26 ms
6,820 KB
testcase_20 AC 33 ms
6,820 KB
testcase_21 AC 58 ms
6,816 KB
testcase_22 AC 8 ms
6,816 KB
testcase_23 AC 32 ms
6,816 KB
testcase_24 AC 73 ms
7,584 KB
testcase_25 AC 64 ms
6,820 KB
testcase_26 AC 72 ms
7,296 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 49 ms
6,820 KB
testcase_29 AC 70 ms
8,192 KB
testcase_30 AC 38 ms
6,816 KB
testcase_31 AC 56 ms
7,004 KB
testcase_32 AC 56 ms
7,040 KB
testcase_33 AC 49 ms
6,816 KB
testcase_34 AC 70 ms
8,320 KB
testcase_35 AC 58 ms
7,040 KB
testcase_36 AC 62 ms
7,424 KB
testcase_37 AC 68 ms
7,808 KB
testcase_38 AC 49 ms
6,820 KB
testcase_39 AC 46 ms
6,820 KB
testcase_40 AC 30 ms
6,816 KB
testcase_41 AC 64 ms
7,656 KB
testcase_42 AC 60 ms
7,040 KB
testcase_43 AC 45 ms
6,816 KB
testcase_44 AC 57 ms
6,820 KB
testcase_45 AC 47 ms
6,816 KB
testcase_46 AC 30 ms
6,820 KB
testcase_47 AC 45 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_must_use, unused_imports)]
use std::io::{self, prelude::*};

fn main() {
    let (stdin, stdout) = (io::read_to_string(io::stdin()).unwrap(), io::stdout());
    let (mut stdin, mut buffer) = (stdin.split_whitespace(), io::BufWriter::new(stdout.lock()));
    macro_rules! input {
        ($t: ty, $n: expr) => {
            (0..$n).map(|_| input!($t)).collect::<Vec<_>>()
        };
        ($t: ty) => {
            stdin.next().unwrap().parse::<$t>().unwrap()
        };
    }

    let H = input!(usize);
    let W = input!(usize);

    let G = (0..H)
        .map(|_| input!(String).chars().collect::<Vec<_>>())
        .collect::<Vec<_>>();

    let mut uf = unionfind::UnionFind::new(H * W);

    let f = |y: usize, x: usize| y * W + x;

    for i in 0..H {
        for j in 0..W {
            if i + 1 < H && G[i][j] == G[i + 1][j] {
                uf.unite(f(i, j), f(i + 1, j));
            }

            if j + 1 < W && G[i][j] == G[i][j + 1] {
                uf.unite(f(i, j), f(i, j + 1));
            }
        }
    }

    for (i, g) in G.into_iter().enumerate() {
        writeln!(
            buffer,
            "{}",
            g.into_iter()
                .enumerate()
                .map(|(j, c)| if uf.size(f(i, j)) >= 4 {
                    ".".to_string()
                } else {
                    format!("{}", c)
                })
                .collect::<Vec<_>>()
                .join("")
        );
    }
}

#[rustfmt::skip]
pub mod unionfind {pub struct UnionFind { data: Vec<i32>,}impl UnionFind { pub fn new(size: usize) -> Self { return Self { data: vec![-1; size], }; } pub fn is_same(&mut self, u: usize, v: usize) -> bool { assert!(v < self.data.len() && u < self.data.len()); self.find(u) == self.find(v) } pub fn unite(&mut self, mut a: usize, mut b: usize) -> () { assert!(a < self.data.len() && b < self.data.len()); a = self.find(a); b = self.find(b); if a == b { return; } if self.data[a] > self.data[b] { (a, b) = (b, a); } self.data[a] += self.data[b]; self.data[b] = a as i32; } pub fn size(&mut self, mut v: usize) -> i32 { assert!(v < self.data.len()); v = self.find(v); -self.data[v] } pub fn find(&mut self, v: usize) -> usize { assert!(v < self.data.len()); if self.data[v] < 0 { return v; } self.data[v] = self.find(self.data[v] as usize) as i32; return self.data[v] as usize; }}}
0