結果

問題 No.1864 Shortest Paths Counting
ユーザー tamatotamato
提出日時 2022-03-04 23:02:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,068 ms / 2,000 ms
コード長 1,867 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 181,928 KB
最終ジャッジ日時 2024-07-18 21:37:35
合計ジャッジ時間 17,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 948 ms
176,356 KB
testcase_10 AC 970 ms
174,240 KB
testcase_11 AC 916 ms
171,664 KB
testcase_12 AC 1,020 ms
180,060 KB
testcase_13 AC 960 ms
174,628 KB
testcase_14 AC 1,010 ms
179,492 KB
testcase_15 AC 908 ms
171,432 KB
testcase_16 AC 939 ms
177,568 KB
testcase_17 AC 901 ms
171,404 KB
testcase_18 AC 962 ms
179,732 KB
testcase_19 AC 968 ms
171,536 KB
testcase_20 AC 1,068 ms
174,248 KB
testcase_21 AC 988 ms
179,096 KB
testcase_22 AC 940 ms
173,988 KB
testcase_23 AC 906 ms
174,892 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 676 ms
181,928 KB
testcase_26 AC 565 ms
177,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


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

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                s %= mod
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                self.tree[i] %= mod
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    N = int(input())
    XY_ori = []
    XY = []
    for _ in range(N):
        x, y = map(int, input().split())
        XY_ori.append((x, y))
        XY.append((x + y, x - y))

    if XY[0][0] > XY[-1][0]:
        XY = [(-x, y) for x, y in XY]
    if XY[0][1] > XY[-1][1]:
        XY = [(x, -y) for x, y in XY]
    XYI = []
    Y = set()
    for i, xy in enumerate(XY):
        x, y = xy
        XYI.append((x, y, i))
        Y.add(y)
    XYI.sort(key=lambda z: z[1])
    XYI.sort(key=lambda z: z[0])
    idx = {y: i + 1 for i, y in enumerate(sorted(list(Y)))}
    L = len(idx)
    bit = Bit(L)

    flg = 1
    for x, y, i in XYI:
        if flg:
            if i != 0:
                continue
            else:
                flg = 0
                bit.add(idx[y], 1)
                continue
        j = idx[y]
        a = bit.sum(j)
        if i == N - 1:
            print(a)
            break
        bit.add(j, a)


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