結果

問題 No.1434 Make Maze
ユーザー StrorkisStrorkis
提出日時 2021-03-20 18:04:12
言語 Rust
(1.72.1)
結果
WA  
実行時間 -
コード長 2,604 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 148,580 KB
実行使用メモリ 5,904 KB
最終ジャッジ日時 2023-08-13 12:04:17
合計ジャッジ時間 9,694 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 WA -
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 3 ms
4,376 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(dead_code)]
mod io {
    use std::str::{FromStr, SplitWhitespace};

    pub struct Scanner<'a>(pub SplitWhitespace<'a>);

    impl<'a> Scanner<'a> {
        pub fn next<T: FromStr>(&mut self) -> T {
            self.0.next().unwrap().parse().ok().unwrap()
        }
    }

    pub fn vec<T, F: FnMut() -> T>(f: F, n: usize) -> Vec<T> {
        std::iter::repeat_with(f).take(n).collect()
    }
}

use std::io::Read;

fn main() {
    let ref mut buf = String::new();
    std::io::stdin().read_to_string(buf).ok();
    let mut sc = io::Scanner(buf.split_whitespace());

    let (h, w, x) = {
        (sc.next::<usize>(), sc.next::<usize>(), sc.next::<usize>())
    };
    let (is_swapped, h, w) = {
        if h % 4 == 3 { (true, w, h) } else { (false, h, w) }
    };
    
    if x < (h - 1) + (w - 1) {
        return println!("-1");
    }
    let mut x = x - ((h - 1) + (w - 1));

    let mut cell = vec![vec!['.'; w]; h];
    for i in (1..h).step_by(2) {
        for j in (1..w).step_by(2) {
            cell[i][j] = '#';
        }
    }

    for i in (1..h).step_by(2) {
        if h % 4 == 3 && i + 2 == h {
            for j in (1..w).step_by(2) {
                if x >= 2 {
                    if j % 4 == 1 {
                        cell[i - 1][j] = '#';
                    } else {
                        cell[i + 1][j] = '#';
                        x -= 4;
                    }    
                } else {
                    cell[i - 1][j] = '#';
                }
            }
        } else if i % 4 == 1 {
            let mut done = false;
            for j in (0..w).step_by(2) {
                if done {
                    cell[i][j] = '#';
                } else if j + 1 < w && x >= 4 {
                    cell[i][j] = '#';
                } else {
                    done = true;
                }
            }
        } else {
            let mut done = false;
            for j in (0..w).step_by(2).rev() {
                if done {
                    cell[i][j] = '#';
                } else if j > 0 && x >= 4 {
                    cell[i][j] = '#';
                    x -= 4;
                } else {
                    done = true;
                }
            }
        }
    }

    if x > 0 {
        return println!("-1");
    }

    if is_swapped {
        for j in 0..w {
            for i in 0..h {
                print!("{}", cell[i][j]);
            }
            println!();
        }
    } else {
        for i in 0..h {
            for j in 0..w {
                print!("{}", cell[i][j]);
            }
            println!();
        }
    }
}
0