結果

問題 No.2278 Time Bomb Game 2
ユーザー akakimidoriakakimidori
提出日時 2023-04-21 21:51:04
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 3,165 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 154,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 07:59:28
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
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 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 RE -
testcase_11 AC 2 ms
5,376 KB
testcase_12 RE -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 RE -
testcase_38 AC 2 ms
5,376 KB
testcase_39 RE -
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 RE -
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 RE -
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 2 ms
5,376 KB
testcase_55 WA -
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
testcase_65 RE -
testcase_66 RE -
testcase_67 AC 2 ms
5,376 KB
testcase_68 RE -
testcase_69 AC 2 ms
5,376 KB
testcase_70 RE -
testcase_71 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    input! {
        n: usize,
        k: usize1,
        t: usize,
        s: bytes,
    }
    // A が勝つか
    let ans = (|| -> bool {
        if (k > 0 && s[k - 1] == s[k]) || (k + 1 < n && s[k] == s[k + 1]) {
            let c = s[k];
            if let Some(x) = (0..k).rev().find(|x| s[*x] != c) {
                let d = k - x;
                if d <= t && d % 2 == t % 2 {
                    return c == b'A';
                }
            }
            if let Some(x) = (k..).find(|x| s[*x] != c) {
                let d = x - k;
                if d <= t && d % 2 == t % 2 {
                    return c == b'A';
                }
            }
            return c != b'A';
        }
        let mut first = false;
        for &k in [k - 1, k + 1].iter().filter(|x| **x < n) {
            let t = t - 1;
            let mut win = false;
            if (k > 0 && s[k - 1] == s[k]) || (k + 1 < n && s[k] == s[k + 1]) {
                let c = s[k];
                if let Some(x) = (0..k).rev().find(|x| s[*x] != c) {
                    let d = k - x;
                    if d <= t && d % 2 == t % 2 {
                        win = true;
                    }
                }
                if let Some(x) = (k..).find(|x| s[*x] != c) {
                    let d = x - k;
                    if d <= t && d % 2 == t % 2 {
                        win = true;
                    }
                }
            }
            if !win {
                first = true;
            }
        }
        if first {
            s[k] == b'A'
        } else {
            s[k] != b'A'
        }
    })();
    let ans = if ans { "Alice" } else { "Bob" };
    println!("{}", ans);
}

// ---------- begin input macro ----------
// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
#[macro_export]
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

#[macro_export]
macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

#[macro_export]
macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, bytes) => {
        read_value!($iter, String).bytes().collect::<Vec<u8>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
// ---------- end input macro ----------
0