結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー titiatitia
提出日時 2024-02-23 22:14:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,500 ms
コード長 1,182 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 228,072 KB
最終ジャッジ日時 2024-09-29 06:59:38
合計ジャッジ時間 15,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 180 ms
110,468 KB
testcase_03 AC 142 ms
93,816 KB
testcase_04 AC 379 ms
184,320 KB
testcase_05 AC 302 ms
137,056 KB
testcase_06 AC 194 ms
116,472 KB
testcase_07 AC 330 ms
164,140 KB
testcase_08 AC 164 ms
103,088 KB
testcase_09 AC 499 ms
227,536 KB
testcase_10 AC 501 ms
227,124 KB
testcase_11 AC 503 ms
227,216 KB
testcase_12 AC 494 ms
227,040 KB
testcase_13 AC 506 ms
227,628 KB
testcase_14 AC 501 ms
227,684 KB
testcase_15 AC 498 ms
227,772 KB
testcase_16 AC 449 ms
227,020 KB
testcase_17 AC 452 ms
227,412 KB
testcase_18 AC 452 ms
227,704 KB
testcase_19 AC 449 ms
228,072 KB
testcase_20 AC 456 ms
227,176 KB
testcase_21 AC 463 ms
227,692 KB
testcase_22 AC 463 ms
227,564 KB
testcase_23 AC 410 ms
226,808 KB
testcase_24 AC 414 ms
226,596 KB
testcase_25 AC 411 ms
226,504 KB
testcase_26 AC 413 ms
226,980 KB
testcase_27 AC 408 ms
226,460 KB
testcase_28 AC 418 ms
226,688 KB
testcase_29 AC 418 ms
226,988 KB
testcase_30 AC 402 ms
227,024 KB
testcase_31 AC 431 ms
227,236 KB
testcase_32 AC 220 ms
122,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


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

T=int(input())
LR=[list(map(int,input().split())) for i in range(T)]

LIST=[]
for x in X:
    LIST.append(x)

for l,r in LR:
    LIST.append(l)
    LIST.append(r)

S=sorted(set(LIST))
D={S[i]:i for i in range(len(S))}


for i in range(N):
    X[i]=D[X[i]]

for i in range(T):
    LR[i][0]=D[LR[i][0]]
    LR[i][1]=D[LR[i][1]]

seg_el=1<<((max(X)+1).bit_length()) # Segment treeの台の要素数
SEG=[-1]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def getvalue(n,seg_el): # 一点の値を取得
    i=n+seg_el
    ANS=-1
    
    ANS=max(SEG[i],ANS)
    i>>=1# 子ノードへ
    
    while i!=0:
        ANS=max(SEG[i],ANS)
        i>>=1

    return ANS

def updates(l,r,x): # 区間[l,r)のminを更新.
    L=l+seg_el
    R=r+seg_el

    while L<R:
        if L & 1:
            SEG[L]=max(x,SEG[L])
            L+=1

        if R & 1:
            R-=1
            SEG[R]=max(x,SEG[R])
        L>>=1
        R>>=1

for i in range(T):
    l,r=LR[i]

    updates(l,r+1,i+1)

for i in range(N):
    print(getvalue(X[i],seg_el))


0