結果

問題 No.2230 Good Omen of White Lotus
ユーザー tamatotamato
提出日時 2023-02-24 22:16:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,989 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 86,836 KB
実行使用メモリ 165,392 KB
最終ジャッジ日時 2023-10-11 06:24:45
合計ジャッジ時間 18,694 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,000 KB
testcase_01 AC 73 ms
71,224 KB
testcase_02 AC 75 ms
71,232 KB
testcase_03 RE -
testcase_04 WA -
testcase_05 AC 73 ms
71,252 KB
testcase_06 AC 74 ms
71,272 KB
testcase_07 AC 75 ms
70,964 KB
testcase_08 AC 73 ms
71,236 KB
testcase_09 AC 76 ms
71,096 KB
testcase_10 AC 76 ms
71,240 KB
testcase_11 AC 76 ms
71,188 KB
testcase_12 AC 77 ms
70,840 KB
testcase_13 AC 78 ms
71,248 KB
testcase_14 AC 346 ms
86,700 KB
testcase_15 AC 92 ms
75,824 KB
testcase_16 AC 347 ms
97,604 KB
testcase_17 AC 347 ms
97,592 KB
testcase_18 AC 347 ms
97,600 KB
testcase_19 AC 352 ms
97,504 KB
testcase_20 AC 129 ms
78,272 KB
testcase_21 AC 108 ms
77,880 KB
testcase_22 AC 142 ms
78,816 KB
testcase_23 AC 137 ms
78,672 KB
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 75 ms
71,416 KB
testcase_27 AC 404 ms
165,392 KB
testcase_28 AC 381 ms
161,400 KB
testcase_29 AC 215 ms
94,708 KB
testcase_30 AC 208 ms
90,768 KB
testcase_31 AC 388 ms
161,900 KB
testcase_32 AC 383 ms
162,120 KB
testcase_33 AC 981 ms
132,364 KB
testcase_34 AC 993 ms
132,648 KB
testcase_35 AC 980 ms
132,648 KB
testcase_36 AC 967 ms
132,588 KB
testcase_37 AC 966 ms
132,220 KB
testcase_38 AC 972 ms
132,168 KB
testcase_39 AC 977 ms
132,340 KB
testcase_40 AC 342 ms
103,360 KB
testcase_41 AC 308 ms
89,524 KB
testcase_42 AC 633 ms
117,964 KB
testcase_43 AC 131 ms
78,468 KB
testcase_44 AC 817 ms
123,364 KB
testcase_45 AC 312 ms
88,504 KB
testcase_46 AC 532 ms
115,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    class SegmentTree:
        def __init__(self, A, initialize=True, segfunc=max, ident=-2000000000):
            self.N = len(A)
            self.LV = (self.N - 1).bit_length()
            self.N0 = 1 << self.LV
            self.segfunc = segfunc
            self.ident = ident
            if initialize:
                self.data = [self.ident] * self.N0 + A + [self.ident] * (self.N0 - self.N)
                for i in range(self.N0 - 1, 0, -1):
                    self.data[i] = segfunc(self.data[i * 2], self.data[i * 2 + 1])
            else:
                self.data = [self.ident] * (self.N0 * 2)

        def update(self, i, x):
            i += self.N0 - 1
            self.data[i] = x
            for _ in range(self.LV):
                i >>= 1
                self.data[i] = self.segfunc(self.data[i * 2], self.data[i * 2 + 1])

        def get(self, i):
            return self.data[i + self.N0 - 1]

        # open interval [l, r)
        def query(self, l, r):
            l += self.N0 - 1
            r += self.N0 - 1
            ret_l = self.ident
            ret_r = self.ident
            while l < r:
                if l & 1:
                    ret_l = self.segfunc(ret_l, self.data[l])
                    l += 1
                if r & 1:
                    ret_r = self.segfunc(self.data[r - 1], ret_r)
                    r -= 1
                l >>= 1
                r >>= 1
            return self.segfunc(ret_l, ret_r)

        # return smallest i(l <= i < r) s.t. check(A[i]) == True
        def binsearch(self, l, r, check):
            if not check(self.query(l, r)):
                return r
            l += self.N0 - 1
            val = self.ident
            while True:
                if check(self.segfunc(val, self.data[l])):
                    break
                if l & 1:
                    val = self.segfunc(val, self.data[l])
                    l += 1
                l >>= 1
            while l < self.N0:
                newval = self.segfunc(val, self.data[l * 2])
                if not check(newval):
                    val = newval
                    l = (l << 1) + 1
                else:
                    l <<= 1
            return l - self.N0 + 1

    H, W, N, P = map(int, input().split())
    XY = []
    X_set = set()
    for _ in range(N):
        x, y = map(int, input().split())
        XY.append((x, y))
        X_set.add(x)

    X_sorted = sorted(list(X_set))
    x2i = {x: i+1 for i, x in enumerate(X_sorted)}
    L = len(X_sorted)
    ST = SegmentTree([0] * L)
    XY.sort(key=lambda z: z[0])
    XY.sort(key=lambda z: z[1])
    for x, y in XY:
        i = x2i[x]
        ST.update(i, ST.query(1, i+1) + 1)
    ma = ST.query(1, L+1)
    invP = pow(P, mod - 2, mod)
    ans = (1 - (pow(P - 2, ma, mod) * pow(P - 1, H + W - 3 - ma, mod) * pow(invP, H + W - 3, mod)) % mod) % mod
    print(ans)


if __name__ == '__main__':
    main()
0