結果

問題 No.2230 Good Omen of White Lotus
ユーザー mkawa2mkawa2
提出日時 2023-02-24 22:52:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 1,452 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 100,952 KB
最終ジャッジ日時 2024-09-13 05:55:10
合計ジャッジ時間 15,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,688 KB
testcase_01 AC 37 ms
52,680 KB
testcase_02 AC 37 ms
52,764 KB
testcase_03 AC 40 ms
53,040 KB
testcase_04 AC 38 ms
53,400 KB
testcase_05 AC 37 ms
53,064 KB
testcase_06 AC 37 ms
53,480 KB
testcase_07 AC 38 ms
52,908 KB
testcase_08 AC 36 ms
53,292 KB
testcase_09 AC 38 ms
54,040 KB
testcase_10 AC 37 ms
53,548 KB
testcase_11 AC 38 ms
52,772 KB
testcase_12 AC 38 ms
54,104 KB
testcase_13 AC 38 ms
53,452 KB
testcase_14 AC 262 ms
89,548 KB
testcase_15 AC 47 ms
61,528 KB
testcase_16 AC 238 ms
96,896 KB
testcase_17 AC 238 ms
96,936 KB
testcase_18 AC 235 ms
97,028 KB
testcase_19 AC 236 ms
96,912 KB
testcase_20 AC 80 ms
77,412 KB
testcase_21 AC 66 ms
72,524 KB
testcase_22 AC 84 ms
78,232 KB
testcase_23 AC 87 ms
78,264 KB
testcase_24 AC 41 ms
60,404 KB
testcase_25 AC 41 ms
60,088 KB
testcase_26 AC 42 ms
59,676 KB
testcase_27 AC 237 ms
98,852 KB
testcase_28 AC 234 ms
98,260 KB
testcase_29 AC 245 ms
98,316 KB
testcase_30 AC 248 ms
98,320 KB
testcase_31 AC 248 ms
98,368 KB
testcase_32 AC 244 ms
98,548 KB
testcase_33 AC 900 ms
100,636 KB
testcase_34 AC 931 ms
100,028 KB
testcase_35 AC 932 ms
100,336 KB
testcase_36 AC 928 ms
100,032 KB
testcase_37 AC 903 ms
100,952 KB
testcase_38 AC 915 ms
99,848 KB
testcase_39 AC 895 ms
100,108 KB
testcase_40 AC 285 ms
84,044 KB
testcase_41 AC 286 ms
83,620 KB
testcase_42 AC 568 ms
91,780 KB
testcase_43 AC 90 ms
78,256 KB
testcase_44 AC 776 ms
97,112 KB
testcase_45 AC 301 ms
84,388 KB
testcase_46 AC 476 ms
89,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

class Bit:
    def __init__(self, op, e, n):
        self.op = op
        self.e = e
        self.n = n+1
        self.table = [e() for _ in range(self.n)]

    def update(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] = self.op(self.table[i], x)
            i += i & -i

    # [0,i]
    def prod(self, i):
        i += 1
        res = self.e()
        while i > 0:
            res = self.op(res, self.table[i])
            i -= i & -i
        return res

h, w, n, p = LI()
xy = LLI1(n)
xy.sort()
bit = Bit(max, int, w)
for x, y in xy:
    now = bit.prod(y)+1
    bit.update(y, now)

c = bit.prod(w-1)
m = h+w-3
p = pow(p, md-2, md)
ans = 1-pow(1-p, m-c, md)*pow(1-2*p, c, md)%md
print(ans%md)
0