結果

問題 No.1771 A DELETEQ
ユーザー koba-e964koba-e964
提出日時 2021-12-09 21:43:06
言語 Rust
(1.77.0)
結果
AC  
実行時間 196 ms / 3,500 ms
コード長 1,804 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 155,908 KB
実行使用メモリ 127,072 KB
最終ジャッジ日時 2023-09-24 13:51:21
合計ジャッジ時間 3,509 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 196 ms
127,072 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 193 ms
126,996 KB
testcase_05 AC 194 ms
126,240 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 34 ms
22,776 KB
testcase_10 AC 27 ms
18,796 KB
testcase_11 AC 20 ms
14,596 KB
testcase_12 AC 17 ms
13,012 KB
testcase_13 AC 22 ms
16,724 KB
testcase_14 AC 68 ms
44,944 KB
testcase_15 AC 95 ms
62,656 KB
testcase_16 AC 96 ms
63,132 KB
testcase_17 AC 6 ms
5,636 KB
testcase_18 AC 32 ms
22,184 KB
testcase_19 AC 3 ms
4,380 KB
testcase_20 AC 64 ms
42,272 KB
testcase_21 AC 9 ms
6,944 KB
testcase_22 AC 23 ms
16,460 KB
testcase_23 AC 30 ms
21,680 KB
testcase_24 AC 7 ms
6,144 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 58 ms
38,636 KB
testcase_27 AC 20 ms
13,996 KB
testcase_28 AC 6 ms
5,044 KB
evil_hand_1.txt RE -
evil_hand_2.txt RE -
evil_hand_3.txt RE -
evil_random_1.txt RE -
evil_random_2.txt RE -
evil_random_3.txt RE -
evil_random_4.txt RE -
evil_random_5.txt RE -
evil_random_6.txt RE -
evil_random_7.txt RE -
evil_random_8.txt RE -
evil_random_9.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

// 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:ty) => ($next().parse::<$t>().expect("Parse error"));
}

const MOD: i64 = 998_244_353;

// https://yukicoder.me/problems/no/1771 (3)
// https://yukicoder.me/problems/no/1772 (3.5)
// 4000^2 が許される。以下の 5 種類の遷移に分けて DP:
// 1. “” (if x == y)
// 2. “AB” + ?? (x-1, y)
// 3. “BA” + ?? (x, y-1)
// 4. “AA” + ?? (x-1, y-1)
// 5. “BB” + ?? (x-1, y-1)
fn main() {
    input!(x: usize, y: usize);
    assert!(x <= 4000 && y <= 4000);
    let mut dp = vec![vec![0; y + 1]; x + 1];
    dp[0][0] = 1;
    for i in 0..x + 1 {
        for j in 0..y + 1 {
            if i + j == 0 { continue; }
            let mut me = 0;
            if i == j {
                me += 1;
            }
            if i > 0 {
                me += dp[i - 1][j];
            }
            if j > 0 {
                me += dp[i][j - 1];
            }
            if i > 0 && j > 0 {
                me += 2 * dp[i - 1][j - 1];
            }
            dp[i][j] = me % MOD;
        }
    }
    println!("{}", dp[x][y]);
}
0