結果

問題 No.1332 Range Nearest Query
ユーザー convexineqconvexineq
提出日時 2021-01-09 16:01:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,423 ms / 2,500 ms
コード長 1,180 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 219,696 KB
最終ジャッジ日時 2024-11-17 20:46:13
合計ジャッジ時間 71,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 2,115 ms
177,332 KB
testcase_04 AC 2,188 ms
177,452 KB
testcase_05 AC 2,190 ms
178,484 KB
testcase_06 AC 1,187 ms
217,788 KB
testcase_07 AC 1,186 ms
217,524 KB
testcase_08 AC 1,214 ms
218,424 KB
testcase_09 AC 1,194 ms
217,912 KB
testcase_10 AC 1,263 ms
217,524 KB
testcase_11 AC 1,162 ms
217,916 KB
testcase_12 AC 1,212 ms
218,204 KB
testcase_13 AC 1,162 ms
217,788 KB
testcase_14 AC 1,232 ms
217,784 KB
testcase_15 AC 1,481 ms
217,780 KB
testcase_16 AC 2,334 ms
218,752 KB
testcase_17 AC 2,322 ms
219,076 KB
testcase_18 AC 2,305 ms
218,796 KB
testcase_19 AC 2,393 ms
219,696 KB
testcase_20 AC 2,423 ms
218,424 KB
testcase_21 AC 2,242 ms
218,688 KB
testcase_22 AC 2,280 ms
219,452 KB
testcase_23 AC 2,199 ms
219,312 KB
testcase_24 AC 2,184 ms
219,064 KB
testcase_25 AC 2,189 ms
218,684 KB
testcase_26 AC 747 ms
218,020 KB
testcase_27 AC 724 ms
217,056 KB
testcase_28 AC 341 ms
77,312 KB
testcase_29 AC 388 ms
77,840 KB
testcase_30 AC 421 ms
77,236 KB
testcase_31 AC 297 ms
77,568 KB
testcase_32 AC 456 ms
78,092 KB
testcase_33 AC 434 ms
77,444 KB
testcase_34 AC 314 ms
76,672 KB
testcase_35 AC 334 ms
77,312 KB
testcase_36 AC 348 ms
77,588 KB
testcase_37 AC 386 ms
76,928 KB
testcase_38 AC 1,882 ms
140,336 KB
testcase_39 AC 1,114 ms
84,168 KB
testcase_40 AC 2,243 ms
216,704 KB
testcase_41 AC 1,511 ms
98,048 KB
testcase_42 AC 1,863 ms
139,168 KB
testcase_43 AC 1,630 ms
112,348 KB
testcase_44 AC 2,071 ms
169,920 KB
testcase_45 AC 1,965 ms
163,760 KB
testcase_46 AC 1,738 ms
120,416 KB
testcase_47 AC 1,909 ms
158,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())

def merge(a,b):
   la,lb = len(a),len(b)
   res = [0]*(la+lb)
   ia = ib = 0
   for i in range(la+lb):
       if ib==lb:
           res[i:] = a[ia:]
           return res
       if ia==la:
           res[i:] = b[ib:]
           return res
       if a[ia] < b[ib]:
           res[i] = a[ia]
           ia += 1
       else:
           res[i] = b[ib]
           ib += 1
   return res

N0 = 1<<(n-1).bit_length()
dat = [None]*(2*N0)
for i in range(n):
    dat[N0+i] = [a[i]]
for i in range(n,N0):
    dat[N0+i] = []
for k in range(N0-1,0,-1):
    dat[k] = merge(dat[2*k], dat[2*k+1])

def getans(lst,x):
    v = INF
    idx = bisect_left(lst,x)
    if idx < len(lst):
        v = lst[idx]-x
    if idx:
        v = min(v,x-lst[idx-1])
    return v

INF = 10**9
from bisect import bisect_left, bisect_right
Q = int(input())
for _ in range(Q):
    L,R,x = map(int,input().split())
    L += N0-1; R += N0
    ans = INF
    while L < R:
        if R & 1:
            R -= 1
            ans = min(ans,getans(dat[R],x))
        if L & 1:
            ans = min(ans,getans(dat[L],x))
            L += 1
        L >>= 1; R >>= 1
    print(ans)
0