結果

問題 No.878 Range High-Element Query
ユーザー titiatitia
提出日時 2024-06-13 00:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 112,468 KB
最終ジャッジ日時 2024-06-13 00:47:11
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,328 KB
testcase_01 AC 50 ms
64,720 KB
testcase_02 AC 52 ms
66,032 KB
testcase_03 AC 44 ms
61,816 KB
testcase_04 AC 48 ms
64,600 KB
testcase_05 AC 48 ms
65,764 KB
testcase_06 AC 41 ms
60,680 KB
testcase_07 AC 38 ms
59,476 KB
testcase_08 AC 47 ms
65,444 KB
testcase_09 AC 48 ms
65,176 KB
testcase_10 AC 44 ms
63,820 KB
testcase_11 AC 251 ms
105,076 KB
testcase_12 AC 208 ms
108,544 KB
testcase_13 AC 231 ms
99,040 KB
testcase_14 AC 169 ms
95,184 KB
testcase_15 AC 197 ms
105,664 KB
testcase_16 AC 245 ms
112,468 KB
testcase_17 AC 259 ms
102,228 KB
testcase_18 AC 289 ms
102,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

D=[N+1]*N

QU=[]
for i in range(N):
    #print(QU)
    a=A[i]
    while QU and QU[-1][0]<a:
        x,ind=QU.pop()
        D[ind]=i

    QU.append((a,i))


D=[D]

for i in range(31):
    X=[N+1]*N

    for j in range(N):
        if D[-1][j]!=N+1:
            X[j]=D[-1][D[-1][j]]

    D.append(X)

for i in range(Q):
    x,l,r=map(int,input().split())
    now=l-1
    ANS=0

    while now<r:
        for i in range(30,-1,-1):
            if D[i][now]<r:
                now=D[i][now]
                ANS+=(1<<i)
                break
        else:
            break

    print(ANS+1)

    
0