結果

問題 No.2230 Good Omen of White Lotus
ユーザー tamatotamato
提出日時 2023-02-24 22:16:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,989 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 163,764 KB
最終ジャッジ日時 2024-09-13 05:38:22
合計ジャッジ時間 15,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 38 ms
53,348 KB
testcase_02 AC 39 ms
53,700 KB
testcase_03 RE -
testcase_04 WA -
testcase_05 AC 39 ms
53,824 KB
testcase_06 AC 38 ms
53,772 KB
testcase_07 AC 37 ms
53,028 KB
testcase_08 AC 39 ms
54,044 KB
testcase_09 AC 38 ms
53,444 KB
testcase_10 AC 39 ms
53,604 KB
testcase_11 AC 38 ms
53,776 KB
testcase_12 AC 39 ms
53,112 KB
testcase_13 AC 42 ms
54,636 KB
testcase_14 AC 256 ms
86,976 KB
testcase_15 AC 54 ms
63,920 KB
testcase_16 AC 288 ms
86,464 KB
testcase_17 AC 289 ms
86,708 KB
testcase_18 AC 284 ms
86,456 KB
testcase_19 AC 286 ms
86,572 KB
testcase_20 AC 97 ms
77,044 KB
testcase_21 AC 70 ms
72,796 KB
testcase_22 AC 100 ms
77,100 KB
testcase_23 AC 100 ms
77,112 KB
testcase_24 RE -
testcase_25 WA -
testcase_26 AC 37 ms
52,680 KB
testcase_27 AC 337 ms
157,924 KB
testcase_28 AC 347 ms
163,040 KB
testcase_29 AC 163 ms
86,540 KB
testcase_30 AC 176 ms
92,340 KB
testcase_31 AC 344 ms
163,152 KB
testcase_32 AC 349 ms
163,764 KB
testcase_33 AC 928 ms
133,720 KB
testcase_34 AC 916 ms
133,596 KB
testcase_35 AC 944 ms
133,600 KB
testcase_36 AC 893 ms
133,968 KB
testcase_37 AC 894 ms
133,848 KB
testcase_38 AC 920 ms
133,600 KB
testcase_39 AC 913 ms
133,844 KB
testcase_40 AC 302 ms
100,760 KB
testcase_41 AC 272 ms
86,712 KB
testcase_42 AC 605 ms
116,616 KB
testcase_43 AC 97 ms
77,292 KB
testcase_44 AC 763 ms
119,956 KB
testcase_45 AC 287 ms
88,696 KB
testcase_46 AC 487 ms
110,076 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