結果

問題 No.2230 Good Omen of White Lotus
ユーザー ニックネームニックネーム
提出日時 2023-02-24 23:33:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 917 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 99,016 KB
最終ジャッジ日時 2024-09-13 06:11:38
合計ジャッジ時間 15,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,936 KB
testcase_01 AC 37 ms
53,256 KB
testcase_02 AC 38 ms
53,472 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
53,072 KB
testcase_05 AC 38 ms
52,232 KB
testcase_06 AC 37 ms
51,940 KB
testcase_07 AC 37 ms
52,312 KB
testcase_08 AC 37 ms
52,600 KB
testcase_09 AC 37 ms
53,432 KB
testcase_10 AC 37 ms
53,356 KB
testcase_11 AC 37 ms
52,736 KB
testcase_12 AC 38 ms
52,952 KB
testcase_13 AC 42 ms
54,320 KB
testcase_14 AC 297 ms
88,540 KB
testcase_15 AC 53 ms
64,664 KB
testcase_16 AC 305 ms
95,384 KB
testcase_17 AC 298 ms
95,656 KB
testcase_18 AC 304 ms
95,556 KB
testcase_19 AC 298 ms
95,480 KB
testcase_20 AC 93 ms
77,720 KB
testcase_21 AC 74 ms
74,432 KB
testcase_22 AC 97 ms
78,332 KB
testcase_23 AC 102 ms
78,056 KB
testcase_24 AC 38 ms
54,400 KB
testcase_25 AC 39 ms
54,812 KB
testcase_26 AC 38 ms
55,200 KB
testcase_27 AC 294 ms
97,252 KB
testcase_28 AC 286 ms
97,224 KB
testcase_29 AC 297 ms
96,788 KB
testcase_30 AC 308 ms
97,344 KB
testcase_31 AC 295 ms
97,352 KB
testcase_32 AC 299 ms
96,792 KB
testcase_33 AC 895 ms
98,848 KB
testcase_34 AC 897 ms
98,396 KB
testcase_35 AC 907 ms
98,664 KB
testcase_36 AC 886 ms
98,352 KB
testcase_37 AC 891 ms
99,016 KB
testcase_38 AC 917 ms
98,684 KB
testcase_39 AC 913 ms
98,088 KB
testcase_40 AC 300 ms
83,772 KB
testcase_41 AC 296 ms
82,856 KB
testcase_42 AC 603 ms
90,504 KB
testcase_43 AC 104 ms
78,396 KB
testcase_44 AC 781 ms
95,356 KB
testcase_45 AC 304 ms
83,668 KB
testcase_46 AC 494 ms
88,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n; self.k = [0]*(n+1)
    def u(self, i, x):
        while i <= self.n: self.k[i] = max(self.k[i], x); i += i&-i
    def m(self, i):
        t = 0
        while i > 0: t = max(t, self.k[i]); i -= i&-i
        return t
h,w,n,p = map(int,input().split())
xy = [tuple(map(int,input().split())) for _ in range(n)]
m = 998244353; bit = BIT(w+1)
for x,y in sorted(xy): bit.u(y,bit.m(y)+1)
c = bit.m(w)
print((1-pow(p-1,h+w-3-c,m)*pow(p-2,c,m)*pow(pow(p,h+w-3,m),m-2,m))%m)
0