結果

問題 No.179 塗り分け
ユーザー Maricom_tkgMaricom_tkg
提出日時 2018-11-08 19:20:51
言語 Rust
(1.77.0)
結果
AC  
実行時間 106 ms / 3,000 ms
コード長 1,502 bytes
コンパイル時間 5,015 ms
コンパイル使用メモリ 145,748 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-30 21:05:30
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 8 ms
4,384 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 11 ms
4,380 KB
testcase_11 AC 9 ms
4,380 KB
testcase_12 AC 47 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 25 ms
4,380 KB
testcase_19 AC 23 ms
4,380 KB
testcase_20 AC 47 ms
4,380 KB
testcase_21 AC 53 ms
4,380 KB
testcase_22 AC 54 ms
4,380 KB
testcase_23 AC 16 ms
4,376 KB
testcase_24 AC 50 ms
4,380 KB
testcase_25 AC 25 ms
4,380 KB
testcase_26 AC 26 ms
4,380 KB
testcase_27 AC 79 ms
4,376 KB
testcase_28 AC 49 ms
4,380 KB
testcase_29 AC 96 ms
4,380 KB
testcase_30 AC 21 ms
4,380 KB
testcase_31 AC 106 ms
4,380 KB
testcase_32 AC 27 ms
4,380 KB
testcase_33 AC 91 ms
4,380 KB
testcase_34 AC 37 ms
4,380 KB
testcase_35 AC 99 ms
4,376 KB
testcase_36 AC 1 ms
4,380 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 1 ms
4,376 KB
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 1 ms
4,380 KB
testcase_43 AC 3 ms
4,380 KB
testcase_44 AC 13 ms
4,384 KB
testcase_45 AC 1 ms
4,380 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();
    let mut result: &str = "NO";
    
    'outer: 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 {
                    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[i as usize][j as usize] & 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().all(|v| v.iter().all(|&b| !b)) {
                result = "YES";
                break 'outer;
            }
        }
    }
    if is_black.iter().all(|v| v.iter().all(|&b| !b)) {
        result = "NO";
    }
    println!("{}", result);
}
0