結果

問題 No.179 塗り分け
ユーザー Maricom_tkgMaricom_tkg
提出日時 2018-11-08 19:41:01
言語 Rust
(1.77.0)
結果
AC  
実行時間 133 ms / 3,000 ms
コード長 1,543 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 142,940 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-30 21:05:37
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 9 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 13 ms
4,380 KB
testcase_11 AC 11 ms
4,500 KB
testcase_12 AC 55 ms
4,376 KB
testcase_13 AC 1 ms
4,376 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 27 ms
4,376 KB
testcase_19 AC 25 ms
4,376 KB
testcase_20 AC 51 ms
4,380 KB
testcase_21 AC 52 ms
4,380 KB
testcase_22 AC 54 ms
4,380 KB
testcase_23 AC 16 ms
4,380 KB
testcase_24 AC 49 ms
4,380 KB
testcase_25 AC 25 ms
4,376 KB
testcase_26 AC 29 ms
4,376 KB
testcase_27 AC 93 ms
4,380 KB
testcase_28 AC 61 ms
4,384 KB
testcase_29 AC 119 ms
4,376 KB
testcase_30 AC 25 ms
4,380 KB
testcase_31 AC 133 ms
4,376 KB
testcase_32 AC 32 ms
4,376 KB
testcase_33 AC 113 ms
4,376 KB
testcase_34 AC 47 ms
4,380 KB
testcase_35 AC 124 ms
4,384 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 1 ms
4,380 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 AC 1 ms
4,380 KB
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 1 ms
4,380 KB
testcase_43 AC 4 ms
4,376 KB
testcase_44 AC 15 ms
4,380 KB
testcase_45 AC 1 ms
4,376 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