結果

問題 No.1332 Range Nearest Query
ユーザー titiatitia
提出日時 2022-08-04 01:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,755 ms / 2,500 ms
コード長 2,322 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 190,392 KB
最終ジャッジ日時 2024-09-13 20:16:54
合計ジャッジ時間 54,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,864 KB
testcase_01 AC 40 ms
52,552 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 1,493 ms
168,256 KB
testcase_04 AC 1,494 ms
168,400 KB
testcase_05 AC 1,511 ms
168,064 KB
testcase_06 AC 906 ms
157,500 KB
testcase_07 AC 897 ms
157,500 KB
testcase_08 AC 896 ms
161,736 KB
testcase_09 AC 915 ms
157,456 KB
testcase_10 AC 894 ms
158,008 KB
testcase_11 AC 893 ms
157,500 KB
testcase_12 AC 915 ms
158,008 KB
testcase_13 AC 891 ms
157,508 KB
testcase_14 AC 887 ms
158,140 KB
testcase_15 AC 901 ms
157,504 KB
testcase_16 AC 1,717 ms
183,144 KB
testcase_17 AC 1,695 ms
190,000 KB
testcase_18 AC 1,701 ms
183,360 KB
testcase_19 AC 1,674 ms
190,392 KB
testcase_20 AC 1,689 ms
184,188 KB
testcase_21 AC 1,677 ms
183,348 KB
testcase_22 AC 1,671 ms
184,884 KB
testcase_23 AC 1,685 ms
184,500 KB
testcase_24 AC 1,690 ms
182,400 KB
testcase_25 AC 1,755 ms
183,220 KB
testcase_26 AC 545 ms
158,496 KB
testcase_27 AC 537 ms
162,548 KB
testcase_28 AC 402 ms
109,156 KB
testcase_29 AC 441 ms
108,792 KB
testcase_30 AC 488 ms
109,056 KB
testcase_31 AC 290 ms
105,720 KB
testcase_32 AC 477 ms
109,184 KB
testcase_33 AC 480 ms
109,064 KB
testcase_34 AC 339 ms
109,372 KB
testcase_35 AC 415 ms
109,004 KB
testcase_36 AC 398 ms
108,800 KB
testcase_37 AC 442 ms
109,064 KB
testcase_38 AC 1,111 ms
134,064 KB
testcase_39 AC 613 ms
110,968 KB
testcase_40 AC 1,663 ms
188,700 KB
testcase_41 AC 767 ms
112,068 KB
testcase_42 AC 1,087 ms
134,696 KB
testcase_43 AC 891 ms
121,144 KB
testcase_44 AC 1,333 ms
146,644 KB
testcase_45 AC 1,266 ms
144,772 KB
testcase_46 AC 1,075 ms
127,820 KB
testcase_47 AC 1,226 ms
136,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

N=int(input())
A=list(map(int,input().split()))
Q=int(input())
Query=[tuple(map(int,input().split())) for i in range(Q)]

def seg_function(x,y): # Segment treeで扱うfunction
    return max(x,y)

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

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=-1<<60

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

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS


ANS=[1<<60]*Q

QU=[]
for i in range(N):
    QU.append((A[i],i))
    
for i in range(Q):
    l,r,x=Query[i]
    QU.append((x,1<<60,l,r,i))

QU.sort(key=itemgetter(0))

for qu in QU:
    if len(qu)==2:
        ai,i=qu
        update(i,ai,seg_el)
    else:
        x,_,l,r,ind=qu
        vv=getvalues(l-1,r)
        ANS[ind]=min(ANS[ind],abs(vv-x))

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

def seg_function(x,y): # Segment treeで扱うfunction
    return min(x,y)

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=1<<60

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

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS


QU.sort(key=itemgetter(0),reverse=True)

for qu in QU:
    if len(qu)==2:
        ai,i=qu
        update(i,ai,seg_el)
    else:
        x,_,l,r,ind=qu
        vv=getvalues(l-1,r)
        ANS[ind]=min(ANS[ind],abs(vv-x))


print("\n".join(map(str,ANS)))
0