結果

問題 No.878 Range High-Element Query
ユーザー tamatotamato
提出日時 2020-06-03 22:53:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 1,596 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 101,584 KB
最終ジャッジ日時 2024-05-04 18:08:04
合計ジャッジ時間 4,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,480 KB
testcase_01 AC 55 ms
68,352 KB
testcase_02 AC 55 ms
69,248 KB
testcase_03 AC 50 ms
66,560 KB
testcase_04 AC 59 ms
68,992 KB
testcase_05 AC 52 ms
67,968 KB
testcase_06 AC 47 ms
63,488 KB
testcase_07 AC 45 ms
64,000 KB
testcase_08 AC 54 ms
68,992 KB
testcase_09 AC 57 ms
68,992 KB
testcase_10 AC 46 ms
64,000 KB
testcase_11 AC 245 ms
96,528 KB
testcase_12 AC 248 ms
98,284 KB
testcase_13 AC 222 ms
93,440 KB
testcase_14 AC 191 ms
92,952 KB
testcase_15 AC 240 ms
97,316 KB
testcase_16 AC 297 ms
100,576 KB
testcase_17 AC 294 ms
101,584 KB
testcase_18 AC 299 ms
101,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
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]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                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, Q = map(int, input().split())
    A = list(map(int, input().split()))
    A.append(N+1)
    bit = Bit(N+1)
    idx = [0] * (N+2)
    for i, a in enumerate(A):
        idx[a] = i+1
    nxt = [[N+1] * 18 for _ in range(N+2)]
    bit.add(N+1, 1)
    for a in range(N, 0, -1):
        i = idx[a]
        nxt[i][0] = bit.lower_bound(bit.sum(i) + 1)
        bit.add(i, 1)
    for lv in range(1, 18):
        for i in range(1, N+2):
            nxt[i][lv] = nxt[nxt[i][lv-1]][lv-1]

    for _ in range(Q):
        _, l, r = map(int, input().split())
        ans = 1
        for lv in range(17, -1, -1):
            if nxt[l][lv] <= r:
                ans += 1<<lv
                l = nxt[l][lv]
        print(ans)


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