結果

問題 No.2230 Good Omen of White Lotus
ユーザー ああいいああいい
提出日時 2023-02-25 17:50:29
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 739 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 844,860 KB
最終ジャッジ日時 2024-09-13 13:55:42
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,452 KB
testcase_01 AC 44 ms
55,480 KB
testcase_02 AC 41 ms
55,120 KB
testcase_03 AC 41 ms
54,096 KB
testcase_04 AC 42 ms
54,324 KB
testcase_05 AC 41 ms
54,620 KB
testcase_06 AC 42 ms
54,748 KB
testcase_07 AC 42 ms
53,804 KB
testcase_08 AC 42 ms
54,780 KB
testcase_09 AC 41 ms
53,892 KB
testcase_10 AC 42 ms
54,848 KB
testcase_11 AC 42 ms
54,432 KB
testcase_12 AC 42 ms
55,276 KB
testcase_13 AC 45 ms
55,384 KB
testcase_14 AC 168 ms
82,116 KB
testcase_15 AC 109 ms
81,548 KB
testcase_16 AC 190 ms
79,852 KB
testcase_17 AC 188 ms
80,036 KB
testcase_18 AC 187 ms
79,828 KB
testcase_19 AC 188 ms
79,876 KB
testcase_20 AC 94 ms
77,028 KB
testcase_21 AC 75 ms
73,604 KB
testcase_22 AC 94 ms
76,740 KB
testcase_23 AC 93 ms
76,896 KB
testcase_24 MLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,N,P = map(int,input().split())
dat = [[0] * W for _ in range(H)]
for _ in range(N):
    x,y = map(int,input().split())
    dat[x-1][y-1] = 1
dp = [[-1] * W for _ in range(H)]
dp[0][0] = 0
#memo = [[0] * W for _ in range(H)]
from collections import deque
stack = deque([(0,0)])
while stack:
    x,y = stack.popleft()
    for i,j in [(1,0),(0,1)]:
        if x + i < H and y + j < W:
            if dp[x + i][y + j] == -1:
                stack.append((x + i,y + j))
            t = dp[x][y] + dat[x + i][y + j]
            if t > dp[x + i][y + j]:
                dp[x + i][y + j] = t
u = dp[-1][-1]
mod = 998244353
v = H + W - 3 - u
r = pow(P,mod-2,mod)
tmp = pow((1-r)%mod,v,mod)*pow((1-r * 2)%mod,u,mod)
ans = (1-tmp)%mod
print(ans)
0