結果

問題 No.1332 Range Nearest Query
ユーザー convexineqconvexineq
提出日時 2021-01-09 16:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,239 ms / 2,500 ms
コード長 794 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 216,420 KB
最終ジャッジ日時 2024-11-17 21:08:40
合計ジャッジ時間 66,712 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,852 KB
testcase_01 AC 38 ms
53,748 KB
testcase_02 AC 36 ms
53,760 KB
testcase_03 AC 2,078 ms
185,896 KB
testcase_04 AC 2,078 ms
185,804 KB
testcase_05 AC 2,102 ms
186,212 KB
testcase_06 AC 1,115 ms
215,288 KB
testcase_07 AC 1,109 ms
215,596 KB
testcase_08 AC 1,121 ms
215,332 KB
testcase_09 AC 1,125 ms
215,216 KB
testcase_10 AC 1,082 ms
215,212 KB
testcase_11 AC 1,108 ms
214,952 KB
testcase_12 AC 1,160 ms
215,396 KB
testcase_13 AC 1,104 ms
215,632 KB
testcase_14 AC 1,122 ms
215,476 KB
testcase_15 AC 1,113 ms
216,052 KB
testcase_16 AC 2,169 ms
215,960 KB
testcase_17 AC 2,196 ms
215,460 KB
testcase_18 AC 2,148 ms
215,640 KB
testcase_19 AC 2,187 ms
216,420 KB
testcase_20 AC 2,129 ms
215,992 KB
testcase_21 AC 2,199 ms
216,108 KB
testcase_22 AC 2,239 ms
215,524 KB
testcase_23 AC 2,153 ms
216,128 KB
testcase_24 AC 2,128 ms
215,732 KB
testcase_25 AC 2,146 ms
215,580 KB
testcase_26 AC 742 ms
215,120 KB
testcase_27 AC 738 ms
215,020 KB
testcase_28 AC 340 ms
77,572 KB
testcase_29 AC 375 ms
78,080 KB
testcase_30 AC 412 ms
77,372 KB
testcase_31 AC 308 ms
77,224 KB
testcase_32 AC 505 ms
78,676 KB
testcase_33 AC 430 ms
77,836 KB
testcase_34 AC 331 ms
76,660 KB
testcase_35 AC 359 ms
77,464 KB
testcase_36 AC 336 ms
77,128 KB
testcase_37 AC 389 ms
77,156 KB
testcase_38 AC 1,774 ms
136,276 KB
testcase_39 AC 1,108 ms
83,736 KB
testcase_40 AC 2,236 ms
216,072 KB
testcase_41 AC 1,397 ms
98,444 KB
testcase_42 AC 1,756 ms
133,296 KB
testcase_43 AC 1,673 ms
110,552 KB
testcase_44 AC 1,978 ms
177,832 KB
testcase_45 AC 1,925 ms
164,132 KB
testcase_46 AC 1,815 ms
121,680 KB
testcase_47 AC 1,854 ms
157,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def merge(a,b):
    return sorted(a+b)

N0 = 1<<(n-1).bit_length()
dat = [[]]*(2*N0)
for i in range(n):
    dat[N0+i] = [a[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