結果

問題 No.1332 Range Nearest Query
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-08 22:55:47
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,464 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 434,632 KB
最終ジャッジ日時 2024-11-16 14:51:45
合計ジャッジ時間 85,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,830 ms
434,180 KB
testcase_07 AC 1,829 ms
434,624 KB
testcase_08 AC 1,786 ms
434,508 KB
testcase_09 AC 1,813 ms
434,112 KB
testcase_10 AC 1,817 ms
434,512 KB
testcase_11 AC 1,804 ms
434,632 KB
testcase_12 AC 1,811 ms
434,372 KB
testcase_13 AC 1,799 ms
434,292 KB
testcase_14 AC 1,783 ms
434,128 KB
testcase_15 AC 1,793 ms
434,576 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,212 ms
433,228 KB
testcase_27 AC 1,195 ms
427,944 KB
testcase_28 AC 255 ms
95,912 KB
testcase_29 AC 285 ms
95,596 KB
testcase_30 AC 346 ms
98,588 KB
testcase_31 AC 193 ms
94,492 KB
testcase_32 AC 362 ms
98,028 KB
testcase_33 AC 372 ms
98,772 KB
testcase_34 AC 229 ms
95,192 KB
testcase_35 AC 270 ms
96,080 KB
testcase_36 AC 257 ms
95,188 KB
testcase_37 AC 296 ms
96,404 KB
testcase_38 AC 2,002 ms
253,692 KB
testcase_39 AC 983 ms
108,728 KB
testcase_40 TLE -
testcase_41 AC 1,393 ms
135,904 KB
testcase_42 AC 1,977 ms
262,064 KB
testcase_43 AC 1,669 ms
171,024 KB
testcase_44 AC 2,434 ms
274,244 KB
testcase_45 AC 2,176 ms
264,148 KB
testcase_46 AC 1,827 ms
182,840 KB
testcase_47 AC 2,086 ms
259,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left

class SegTree:
    """ define what you want to do with 0 index, ex) size = tree_size, func = min or max, sta = default_value """
    
    def __init__(self,size):
        self.n = size
        self.size = 1 << size.bit_length()
        self.tree = [[-10**10,10**10]]*(2*self.size)

    def build(self, list):
        """ set list and update tree"""
        for i,x in enumerate(list,self.size):
            self.tree[i] = sorted(self.tree[i]+[x])

        for i in range(self.size-1,0,-1):
            self.tree[i] = sorted(self.tree[i<<1]+self.tree[i<<1 | 1])
  
    def get(self,l,r,x):
        """ take the value of [l r) with func (min or max)"""
        l += self.size
        r += self.size
        res = 10**10

        while l < r:
            if l & 1:
                t = bisect_left(self.tree[l],x)
                res = min(res,x-self.tree[l][t-1],self.tree[l][t]-x)
                l += 1
            if r & 1:
                t = bisect_left(self.tree[r-1],x)
                res = min(res,x-self.tree[r-1][t-1],self.tree[r-1][t]-x)
            l >>= 1
            r >>= 1
            if res == 0:
                return res
        return res

n = int(input())
X = list(map(int,input().split()))
Q = int(input())
q = [tuple(map(int,input().split())) for i in range(Q)]
seg = SegTree(n)
seg.build(X)
ans = []
for l,r,x in q:
    ans.append(seg.get(l-1,r,x))

print(*ans,sep="\n")
0