結果

問題 No.2230 Good Omen of White Lotus
ユーザー 👑 rin204rin204
提出日時 2023-03-06 00:23:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 105,028 KB
最終ジャッジ日時 2024-09-18 01:43:37
合計ジャッジ時間 13,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,648 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 39 ms
52,736 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 41 ms
53,120 KB
testcase_14 AC 243 ms
89,472 KB
testcase_15 AC 48 ms
54,400 KB
testcase_16 AC 289 ms
97,224 KB
testcase_17 AC 290 ms
97,324 KB
testcase_18 AC 294 ms
97,184 KB
testcase_19 AC 294 ms
97,152 KB
testcase_20 AC 93 ms
77,260 KB
testcase_21 AC 74 ms
74,188 KB
testcase_22 AC 100 ms
78,288 KB
testcase_23 AC 100 ms
78,592 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 278 ms
105,028 KB
testcase_28 AC 279 ms
104,000 KB
testcase_29 AC 278 ms
104,412 KB
testcase_30 AC 290 ms
103,968 KB
testcase_31 AC 273 ms
104,592 KB
testcase_32 AC 265 ms
97,584 KB
testcase_33 AC 563 ms
98,860 KB
testcase_34 AC 562 ms
98,304 KB
testcase_35 AC 546 ms
98,560 KB
testcase_36 AC 560 ms
98,304 KB
testcase_37 AC 555 ms
99,012 KB
testcase_38 AC 562 ms
98,304 KB
testcase_39 AC 565 ms
98,284 KB
testcase_40 AC 219 ms
84,864 KB
testcase_41 AC 218 ms
84,480 KB
testcase_42 AC 400 ms
94,208 KB
testcase_43 AC 95 ms
77,344 KB
testcase_44 AC 500 ms
96,000 KB
testcase_45 AC 220 ms
83,652 KB
testcase_46 AC 325 ms
88,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

MOD = 998244353

h, w, n, P = map(int, input().split())
xy = [list(map(int, input().split())) for _ in range(n)]
xy.sort(key=lambda x:(x[0] << 30) + x[1])

lst = []
for _, y in xy:
    p = bisect_right(lst, y)
    if len(lst) == p:
        lst.append(y)
    else:
        lst[p] = y

inv = pow(P, MOD - 2, MOD)
x = len(lst)
y = h + w - 3 - x
ans = 1 - pow(1 - inv, y, MOD) * pow(1 - 2 * inv, x, MOD)
print(ans % MOD)
0