結果

問題 No.2409 Strange Werewolves
ユーザー ryohei22ryohei22
提出日時 2023-08-11 22:38:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 790 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 231,440 KB
最終ジャッジ日時 2024-11-18 17:32:01
合計ジャッジ時間 36,895 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,616 KB
testcase_01 AC 64 ms
208,940 KB
testcase_02 AC 39 ms
61,132 KB
testcase_03 TLE -
testcase_04 AC 87 ms
83,592 KB
testcase_05 AC 86 ms
217,124 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,615 ms
100,256 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,017 ms
231,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict


MOD = 998244353


X, Y, Z, W = map(int, input().split())

dx = X - Z
dy = Y - W

# dp[i][j]: i回の会議終了時に人がj人追放されているような組み合わせの数(追放された狼の数は i-j)
# 途中で片方が0人になってはいけないことに注意
old = defaultdict(int)
old[0] = 1
for i in range(1, dx+dy+1):
    new = defaultdict(int)
    for j in old:
        if (i == dx + dy or X - (j + 1) != 0) and j + 1 <= dx:
            new[j+1] += old[j] * (X - j)  # 人を追放
            new[j+1] %= MOD
        if (i == dx + dy or Y - (i - 1 - j + 1) != 0) and (i - 1 - j) + 1 <= dy:
            new[j] += old[j] * (Y - (i - 1 - j))  # 狼を追放
            new[j] %= MOD
    old = new
print(sum(old.values()) % MOD)
0