結果

問題 No.179 塗り分け
ユーザー cra77756176cra77756176
提出日時 2022-12-16 22:47:29
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 543 ms / 3,000 ms
コード長 1,083 bytes
コンパイル時間 15,342 ms
コンパイル使用メモリ 384,872 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-16 04:17:33
合計ジャッジ時間 15,621 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 0 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 7 ms
6,820 KB
testcase_11 AC 6 ms
6,816 KB
testcase_12 AC 543 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 4 ms
6,816 KB
testcase_19 AC 3 ms
6,820 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 5 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 12 ms
6,820 KB
testcase_30 AC 8 ms
6,820 KB
testcase_31 AC 21 ms
6,816 KB
testcase_32 AC 10 ms
6,820 KB
testcase_33 AC 33 ms
6,820 KB
testcase_34 AC 5 ms
6,820 KB
testcase_35 AC 47 ms
6,820 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 1 ms
6,820 KB
testcase_38 AC 1 ms
6,816 KB
testcase_39 AC 1 ms
6,820 KB
testcase_40 AC 1 ms
6,820 KB
testcase_41 AC 1 ms
6,816 KB
testcase_42 AC 1 ms
6,820 KB
testcase_43 AC 1 ms
6,816 KB
testcase_44 AC 2 ms
6,816 KB
testcase_45 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;

fn main() {
    let mut xx = String::new();
    std::io::Read::read_to_string(&mut std::io::stdin(), &mut xx).ok();
    let xx: Vec<Vec<char>> = xx
        .split_whitespace()
        .skip(2)
        .map(|s| s.chars().collect())
        .collect();

    let mut blk = VecDeque::new();
    for y in 0..xx.len() {
        for x in 0..xx[0].len() {
            if xx[y][x] == '#' {
                blk.push_back((y, x));
            }
        }
    }
    let blk = blk;

    if blk.len() & 1 == 1 {
        println!("NO");
        return;
    }

    'outer: for i in 1..blk.len() {
        let (dy, dx) = (blk[i].0 - blk[0].0, blk[i].1 - blk[0].1);

        let mut tmp = blk.clone();
        while !tmp.is_empty() {
            let (y, x) = tmp.pop_front().unwrap();
            let moves_to = (y + dy, x + dx);
            if tmp.contains(&moves_to) {
                tmp.retain(|c| c != &moves_to);
            } else {
                continue 'outer;
            }
        }

        println!("YES");
        return;
    }

    println!("NO");
}
0