結果

問題 No.2230 Good Omen of White Lotus
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-12-11 23:26:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,060 ms / 2,000 ms
コード長 1,883 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 155,948 KB
最終ジャッジ日時 2024-07-20 06:41:42
合計ジャッジ時間 18,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,848 KB
testcase_01 AC 47 ms
62,976 KB
testcase_02 AC 49 ms
63,488 KB
testcase_03 AC 46 ms
63,360 KB
testcase_04 AC 47 ms
63,360 KB
testcase_05 AC 48 ms
63,232 KB
testcase_06 AC 50 ms
63,104 KB
testcase_07 AC 52 ms
63,360 KB
testcase_08 AC 49 ms
63,232 KB
testcase_09 AC 48 ms
63,104 KB
testcase_10 AC 54 ms
62,848 KB
testcase_11 AC 48 ms
63,232 KB
testcase_12 AC 52 ms
63,360 KB
testcase_13 AC 57 ms
66,432 KB
testcase_14 AC 325 ms
95,212 KB
testcase_15 AC 71 ms
70,912 KB
testcase_16 AC 331 ms
103,972 KB
testcase_17 AC 324 ms
104,232 KB
testcase_18 AC 321 ms
104,100 KB
testcase_19 AC 318 ms
103,968 KB
testcase_20 AC 128 ms
82,560 KB
testcase_21 AC 102 ms
80,896 KB
testcase_22 AC 125 ms
82,688 KB
testcase_23 AC 130 ms
83,712 KB
testcase_24 AC 48 ms
63,360 KB
testcase_25 AC 48 ms
62,976 KB
testcase_26 AC 48 ms
63,104 KB
testcase_27 AC 279 ms
106,928 KB
testcase_28 AC 293 ms
106,916 KB
testcase_29 AC 390 ms
155,860 KB
testcase_30 AC 398 ms
155,932 KB
testcase_31 AC 399 ms
155,828 KB
testcase_32 AC 410 ms
155,948 KB
testcase_33 AC 1,036 ms
136,720 KB
testcase_34 AC 1,029 ms
136,584 KB
testcase_35 AC 1,053 ms
137,360 KB
testcase_36 AC 1,023 ms
136,600 KB
testcase_37 AC 1,036 ms
136,844 KB
testcase_38 AC 1,060 ms
136,712 KB
testcase_39 AC 1,048 ms
136,456 KB
testcase_40 AC 358 ms
100,172 KB
testcase_41 AC 355 ms
96,252 KB
testcase_42 AC 640 ms
104,468 KB
testcase_43 AC 139 ms
82,944 KB
testcase_44 AC 879 ms
124,580 KB
testcase_45 AC 371 ms
99,476 KB
testcase_46 AC 573 ms
111,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class Segtree():
    def __init__(self):
        self.tree = [-1 * 10 ** 9 for _ in range(1 << 19)]

    def set(self, n, k):
        n += (1 << 18)
        ret = -1 * (10 ** 9)
        
        now = n
        self.tree[now] = k
        while now > 1:
            now = now // 2
            self.tree[now] = max(self.tree[now * 2], self.tree[now * 2 + 1])

    def out(self, x):
        print(self.tree[(1 << 18) : (1 << 18) + x])        
    
    def get(self, n):
        return self.tree[n + (1 << 18)]
    
    def prod(self, l, r):
        l += (1 << 18)
        r += (1 << 18)
        if l >= r:
            return -1 * (10 ** 9)
        
        left_ret = -1 * (10 ** 9)
        right_ret = -1 * (10 ** 9)
        while l < r:
            if l % 2 == 1:
                left_ret = max(left_ret, self.tree[l])
                l += 1
            
            if r % 2 == 1:
                r -= 1
                right_ret = max(right_ret, self.tree[r])
            
            l = l // 2
            r = r // 2
        
        return max(left_ret, right_ret)

H, W, N, P = map(int, input().split())
sy = set()
sy.add(1)
plst = []
for i in range(N):
    x, y = map(int, input().split())
    sy.add(y)
    plst.append([x, y])

plst.sort()
#print(plst)

ly = list(sy)
ly.sort()

#print(ly)

d = defaultdict(int)
for i in range(len(ly)):
    d[ly[i]] = i

seg = Segtree()

seg.set(d[1], 0)

for i in range(N):
    vy = d[plst[i][1]]
    val = seg.get(vy)
    prd = seg.prod(0, vy + 1)
    seg.set(vy, max(prd, val) + 1)

max_omen = seg.prod(0, (1 << 18))

mod = 998244353

def inv(p):
    return pow(p, mod - 2, mod)

ans = 1

ans = (ans * pow(P - 1, H + W - 3 - max_omen, mod)) % mod
ans = (ans * pow(P - 2, max_omen, mod)) % mod

ans = (pow(P, H + W - 3, mod) - ans + mod) % mod

ans = (ans * inv(pow(P, H + W - 3, mod))) % mod
print(ans)
0