結果

問題 No.640 76本のトロンボーン
ユーザー koba-e964koba-e964
提出日時 2021-11-06 17:20:09
言語 Rust
(1.77.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 3,221 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 164,604 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 05:50:32
合計ジャッジ時間 1,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) };
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };
    ($next:expr, usize1) => (read_value!($next, usize) - 1);
    ($next:expr, [ $t:tt ]) => {{
        let len = read_value!($next, usize);
        read_value!($next, [$t; len])
    }};
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); }
impl<T: PartialOrd> Change for T {
    fn chmax(&mut self, x: T) { if *self < x { *self = x; } }
    fn chmin(&mut self, x: T) { if *self > x { *self = x; } }
}

fn rot(s: Vec<Vec<char>>) -> Vec<Vec<char>> {
    let n = s.len();
    let mut a = vec![vec!['+'; n]; n];
    for i in 0..n {
        for j in 0..n {
            a[j][n - i - 1] = s[i][j];
        }
    }
    a
}

fn calc(s: &[Vec<char>]) -> usize {
    let n = s.len();
    let mut ans = 0;
    if s[0][..n - 1].iter().all(|&c| c == '.') {
        ans += 1;
    }
    let mut tmp1 = 0;
    let mut x = 0;
    let mut y = 0;
    let mut z = 0;
    for i in 1..n {
        if s[i][1..n - 1].iter().all(|&c| c == '.')
            && (s[i][0] == '.' || s[i][n - 1] == '.') {
                tmp1 += 1;
                if s[i][0] == '.' && s[i][n - 1] == '.' {
                    z += 1;
                }
            } else {
                if s[i][0] == '.' {
                    x += 1;
                }
                if s[i][n - 1] == '.' {
                    y += 1;
                }
            }
    }
    if max(x, y) + z >= n - 1 {
        tmp1 += 1;
    }
    let mut tmp2 = 0;
    for i in 0..n {
        if (1..n).all(|j| s[j][i] == '.') {
            tmp2 += 1;
        }
    }
    ans + max(tmp1, tmp2)
}

fn main() {
    input! {
        n: usize,
        s: [chars; n],
    }
    let mut s = s;
    let mut ma = 0;
    for _ in 0..2 {
        for _ in 0..4 {
            ma = max(ma, calc(&s));
            s = rot(s);
        }
        s.reverse();
    }
    if s[0].iter().all(|&c| c == '.')
        && s[n - 1].iter().all(|&c| c == '.')
        && (0..n).all(|i| s[i][0] == '.' && s[i][n - 1] == '.') {
            ma = max(ma, 4);
        }
    println!("{}", ma);
}
0