結果

問題 No.878 Range High-Element Query
ユーザー H3PO4H3PO4
提出日時 2022-08-20 13:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 105,580 KB
最終ジャッジ日時 2024-10-09 06:29:51
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 55 ms
64,896 KB
testcase_02 AC 53 ms
64,768 KB
testcase_03 AC 53 ms
63,744 KB
testcase_04 AC 54 ms
64,128 KB
testcase_05 AC 63 ms
67,584 KB
testcase_06 AC 46 ms
59,392 KB
testcase_07 AC 42 ms
58,752 KB
testcase_08 AC 54 ms
64,640 KB
testcase_09 AC 53 ms
64,640 KB
testcase_10 AC 53 ms
63,872 KB
testcase_11 AC 221 ms
99,200 KB
testcase_12 AC 198 ms
101,668 KB
testcase_13 AC 216 ms
93,568 KB
testcase_14 AC 175 ms
91,452 KB
testcase_15 AC 194 ms
99,464 KB
testcase_16 AC 225 ms
105,216 KB
testcase_17 AC 226 ms
105,580 KB
testcase_18 AC 230 ms
105,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N, Q = map(int, input().split())
A = tuple(map(int, input().split()))

stk = []
doubling = [[None] * N for _ in range(N.bit_length())]
for i, a in enumerate(A):
    while stk and stk[-1][1] <= a:
        j, b = stk.pop()
        doubling[0][j] = i
    stk.append((i, a))
for k in range(N.bit_length() - 1):
    for i in range(N):
        if doubling[k][i] is not None:
            doubling[k + 1][i] = doubling[k][doubling[k][i]]

for _ in range(Q):
    _, L, R = map(int, input().split())
    L -= 1
    R -= 1
    ans = 1
    for k in range(N.bit_length() - 1, -1, -1):
        if doubling[k][L] is not None and doubling[k][L] <= R:
            L = doubling[k][L]
            ans += 1 << k
    print(ans)
0