結果

問題 No.1332 Range Nearest Query
ユーザー titiatitia
提出日時 2021-01-14 05:22:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,184 bytes
コンパイル時間 1,045 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 128,324 KB
最終ジャッジ日時 2024-11-23 16:32:43
合計ジャッジ時間 18,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 303 ms
127,580 KB
testcase_07 AC 312 ms
128,048 KB
testcase_08 AC 300 ms
127,788 KB
testcase_09 AC 298 ms
128,092 KB
testcase_10 AC 295 ms
127,840 KB
testcase_11 AC 293 ms
128,252 KB
testcase_12 AC 298 ms
128,176 KB
testcase_13 AC 299 ms
127,712 KB
testcase_14 AC 298 ms
127,836 KB
testcase_15 AC 298 ms
127,704 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 225 ms
127,740 KB
testcase_27 AC 240 ms
127,780 KB
testcase_28 AC 168 ms
88,144 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 147 ms
87,808 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 159 ms
88,320 KB
testcase_35 AC 171 ms
88,192 KB
testcase_36 AC 166 ms
88,312 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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_function1(x,y): # Segment treeで扱うfunction
    return max(x,y)

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

for i in range(N): # Aを対応する箇所へupdate
    SEG1[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG1[i]=seg_function1(SEG1[i*2],SEG1[i*2+1])

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

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

        if R & 1:
            R-=1
            ANS=seg_function1(ANS , SEG1[R])
        L>>=1
        R>>=1

    return ANS

def bisect_on_SEG1(l,x): # l以上で、x以上の最小のindexを返す。ただし、存在しない場合はNを返す。
    L=l+seg_el
    R=seg_el*2-1
    while L<R:
        if SEG1[L]>=x:
            break
        if L & 1:
            L+=1
        L>>=1
        R>>=1
 
    if SEG1[L]<x:
        return N
 
    while L<seg_el:
        if SEG1[L*2]>=x:
            L=L*2
        else:
            L=L*2+1
 
    return L-seg_el

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

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

for i in range(N): # Aを対応する箇所へupdate
    SEG2[i+seg_el]=A[i]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG2[i]=seg_function2(SEG2[i*2],SEG2[i*2+1])

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

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

        if R & 1:
            R-=1
            ANS=seg_function2(ANS , SEG2[R])
        L>>=1
        R>>=1

    return ANS

def bisect_on_SEG2(l,x): # l以上で、x以下の最小のindexを返す。ただし、存在しない場合はNを返す。
    L=l+seg_el
    R=seg_el*2-1
    while L<R:
        if SEG2[L]<=x:
            break
        if L & 1:
            L+=1
        L>>=1
        R>>=1
 
    if SEG2[L]>x:
        return N
 
    while L<seg_el:
        if SEG2[L*2]<=x:
            L=L*2
        else:
            L=L*2+1
 
    return L-seg_el

for l,r,x in Query:
    xx=bisect_on_SEG1(l-1,x)
    yy=bisect_on_SEG2(l-1,x)

    ANS=1<<30
    for i in [l-1,r-1,xx-1,xx,xx+1,yy-1,yy,yy+1]:
        if l-1<=i<=r-1:
            ANS=min(ANS,abs(A[i]-x))

    print(ANS)


0