結果

問題 No.1332 Range Nearest Query
ユーザー convexineqconvexineq
提出日時 2021-01-09 15:52:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,348 ms / 2,500 ms
コード長 2,000 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 217,840 KB
最終ジャッジ日時 2024-11-17 20:24:40
合計ジャッジ時間 68,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,288 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 2,170 ms
187,976 KB
testcase_04 AC 2,135 ms
187,284 KB
testcase_05 AC 2,220 ms
187,536 KB
testcase_06 AC 1,123 ms
216,356 KB
testcase_07 AC 1,144 ms
216,604 KB
testcase_08 AC 1,124 ms
216,604 KB
testcase_09 AC 1,125 ms
216,180 KB
testcase_10 AC 1,162 ms
215,968 KB
testcase_11 AC 1,134 ms
215,932 KB
testcase_12 AC 1,128 ms
216,864 KB
testcase_13 AC 1,159 ms
216,344 KB
testcase_14 AC 1,126 ms
216,340 KB
testcase_15 AC 1,112 ms
216,984 KB
testcase_16 AC 2,175 ms
216,888 KB
testcase_17 AC 2,178 ms
217,172 KB
testcase_18 AC 2,177 ms
217,624 KB
testcase_19 AC 2,236 ms
217,724 KB
testcase_20 AC 2,230 ms
216,788 KB
testcase_21 AC 2,221 ms
216,684 KB
testcase_22 AC 2,172 ms
217,840 KB
testcase_23 AC 2,174 ms
217,556 KB
testcase_24 AC 2,215 ms
217,412 KB
testcase_25 AC 2,348 ms
217,040 KB
testcase_26 AC 739 ms
216,232 KB
testcase_27 AC 761 ms
216,360 KB
testcase_28 AC 380 ms
76,800 KB
testcase_29 AC 373 ms
77,592 KB
testcase_30 AC 423 ms
77,272 KB
testcase_31 AC 298 ms
77,300 KB
testcase_32 AC 463 ms
78,308 KB
testcase_33 AC 432 ms
78,152 KB
testcase_34 AC 312 ms
76,800 KB
testcase_35 AC 334 ms
77,068 KB
testcase_36 AC 381 ms
77,212 KB
testcase_37 AC 354 ms
77,504 KB
testcase_38 AC 1,855 ms
136,952 KB
testcase_39 AC 1,125 ms
83,564 KB
testcase_40 AC 2,224 ms
217,268 KB
testcase_41 AC 1,611 ms
98,440 KB
testcase_42 AC 1,799 ms
133,828 KB
testcase_43 AC 1,677 ms
110,820 KB
testcase_44 AC 2,093 ms
179,748 KB
testcase_45 AC 2,113 ms
165,004 KB
testcase_46 AC 1,740 ms
122,444 KB
testcase_47 AC 1,890 ms
158,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segment_tree:
    __slots__ = ["op_M", "e_M","N","N0","dat"]
    def __init__(self, N, operator_M, e_M):
        self.op_M = operator_M
        self.e_M = e_M
        self.N = N
        self.N0 = 1<<(N-1).bit_length()
        self.dat = [self.e_M]*(2*self.N0)
    
    # 長さNの配列 initial で初期化
    def build(self, initial):
        assert self.N == len(initial)
        self.dat[self.N0:self.N0+len(initial)] = initial[:]
        for k in range(self.N0-1,0,-1):
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])

    # a_k の値を x に更新
    def update(self,k,x):
        k += self.N0
        self.dat[k] = x
        k >>= 1
        while k:
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])
            k >>= 1

    # 区間[L,R]をopでまとめる
    def query(self,L,R):
        L += self.N0; R += self.N0 + 1 
        sl = sr = self.e_M
        while L < R:
            if R & 1:
                R -= 1
                sr = self.op_M(self.dat[R],sr)
            if L & 1:
                sl = self.op_M(sl,self.dat[L])
                L += 1
            L >>= 1; R >>= 1
        return self.op_M(sl,sr)

    def get(self, k): #k番目の値を取得。query[k,k]と同じ
        return self.dat[k+self.N0]


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

def merge(a,b):
    return sorted(a+b)
seg = segment_tree(n, merge, [])
seg.build([[ai] for ai in a])

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())
N0 = seg.N0
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(seg.dat[R],x))
        if L & 1:
            ans = min(ans,getans(seg.dat[L],x))
            L += 1
        L >>= 1; R >>= 1
    print(ans)
0