結果

問題 No.179 塗り分け
ユーザー Maricom_tkgMaricom_tkg
提出日時 2018-11-08 19:41:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 127 ms / 3,000 ms
コード長 1,543 bytes
コンパイル時間 12,274 ms
コンパイル使用メモリ 399,932 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-23 14:53:35
合計ジャッジ時間 14,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 8 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 49 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 26 ms
6,940 KB
testcase_19 AC 25 ms
6,940 KB
testcase_20 AC 46 ms
6,944 KB
testcase_21 AC 48 ms
6,940 KB
testcase_22 AC 49 ms
6,944 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 45 ms
6,940 KB
testcase_25 AC 24 ms
6,940 KB
testcase_26 AC 30 ms
6,940 KB
testcase_27 AC 85 ms
6,940 KB
testcase_28 AC 61 ms
6,940 KB
testcase_29 AC 111 ms
6,944 KB
testcase_30 AC 31 ms
6,940 KB
testcase_31 AC 127 ms
6,944 KB
testcase_32 AC 37 ms
6,944 KB
testcase_33 AC 107 ms
6,940 KB
testcase_34 AC 51 ms
6,940 KB
testcase_35 AC 119 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,948 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 3 ms
6,944 KB
testcase_44 AC 14 ms
6,944 KB
testcase_45 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
    let mut buf = String::new();
    std::io::stdin().read_to_string(&mut buf).unwrap();
    
    let mut iter = buf.split_whitespace();
    let h: isize = iter.next().unwrap().parse().unwrap();
    let w: isize = iter.next().unwrap().parse().unwrap();
    
    let is_black: Vec<Vec<bool>> = iter.map(|s| s.chars().map(|c| c == '#').collect::<Vec<bool>>()).collect();
    if !is_black.iter().any(|v| v.iter().any(|&b| b)) {
        println!("NO");
        return
    }
    
    for v_move in -h+1..=h-1 {
        for h_move in -w+1..=w-1 {
            if v_move == 0 && h_move == 0 { continue }
            
            let mut is_black_c: Vec<Vec<bool>> = is_black.clone();
            for i in 0..h {
                for j in 0..w {
                    if is_black_c[i as usize][j as usize] {
                        let i2: isize= i + v_move;
                        let j2: isize = j + h_move;
                        if i2 >= 0 && i2 < h
                        && j2 >= 0 && j2 < w {
                            if is_black_c[i2 as usize][j2 as usize] {
                                is_black_c[i as usize][j as usize] = false;
                                is_black_c[i2 as usize][j2 as usize] = false;
                            }
                        }
                    }
                }
            }
            
            if !is_black_c.iter().any(|v| v.iter().any(|&b| b)) {
                println!("YES");
                return
            }
        }
    }
    println!("NO");
}
0