結果

問題 No.878 Range High-Element Query
ユーザー 👑 rin204rin204
提出日時 2022-10-30 16:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 112,260 KB
最終ジャッジ日時 2024-07-07 07:35:50
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,620 KB
testcase_01 AC 60 ms
66,704 KB
testcase_02 AC 60 ms
67,504 KB
testcase_03 AC 50 ms
60,716 KB
testcase_04 AC 59 ms
68,452 KB
testcase_05 AC 62 ms
67,324 KB
testcase_06 AC 48 ms
61,920 KB
testcase_07 AC 46 ms
60,364 KB
testcase_08 AC 62 ms
67,356 KB
testcase_09 AC 63 ms
68,324 KB
testcase_10 AC 60 ms
67,208 KB
testcase_11 AC 453 ms
104,328 KB
testcase_12 AC 308 ms
108,404 KB
testcase_13 AC 359 ms
98,948 KB
testcase_14 AC 282 ms
95,032 KB
testcase_15 AC 316 ms
105,260 KB
testcase_16 AC 416 ms
111,828 KB
testcase_17 AC 439 ms
112,204 KB
testcase_18 AC 446 ms
112,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, Q = map(int, input().split())
A = list(map(int, input().split()))

stack = [(n, 1 << 60)]
nex = [[n] * (n + 1) for _ in range(30)]
for i in range(n - 1, -1, -1):
    a = A[i]
    while stack[-1][1] < a:
        stack.pop()
    nex[0][i] = stack[-1][0]
    stack.append((i, a))

for i in range(1, 30):
    for j in range(n):
        nex[i][j] = nex[i - 1][nex[i - 1][j]]

for _ in range(Q):
    _, l, r = map(int, input().split())
    l -= 1
    r -= 1
    ans = 1
    for i in range(29, -1, -1):
        if nex[i][l] <= r:
            l = nex[i][l]
            ans += 1 << i
    print(ans)
0