結果
問題 | No.1332 Range Nearest Query |
ユーザー | persimmon-persimmon |
提出日時 | 2021-06-15 09:10:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,765 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 204,452 KB |
最終ジャッジ日時 | 2024-06-07 18:48:38 |
合計ジャッジ時間 | 46,082 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,352 KB |
testcase_01 | AC | 42 ms
52,096 KB |
testcase_02 | AC | 42 ms
52,096 KB |
testcase_03 | AC | 2,202 ms
177,088 KB |
testcase_04 | AC | 2,164 ms
176,956 KB |
testcase_05 | AC | 2,230 ms
176,268 KB |
testcase_06 | AC | 1,192 ms
193,212 KB |
testcase_07 | AC | 1,160 ms
192,828 KB |
testcase_08 | AC | 1,196 ms
199,716 KB |
testcase_09 | AC | 1,169 ms
193,080 KB |
testcase_10 | AC | 1,174 ms
192,568 KB |
testcase_11 | AC | 1,191 ms
192,444 KB |
testcase_12 | AC | 1,198 ms
193,084 KB |
testcase_13 | AC | 1,184 ms
192,832 KB |
testcase_14 | AC | 1,196 ms
192,948 KB |
testcase_15 | AC | 1,215 ms
193,216 KB |
testcase_16 | AC | 2,386 ms
198,436 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 2,426 ms
198,704 KB |
testcase_19 | AC | 2,454 ms
198,684 KB |
testcase_20 | AC | 2,415 ms
198,432 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 2,458 ms
198,052 KB |
testcase_24 | AC | 2,341 ms
198,308 KB |
testcase_25 | AC | 2,474 ms
198,688 KB |
testcase_26 | AC | 823 ms
197,608 KB |
testcase_27 | AC | 865 ms
194,044 KB |
testcase_28 | AC | 481 ms
103,036 KB |
testcase_29 | AC | 518 ms
103,740 KB |
testcase_30 | AC | 581 ms
103,616 KB |
testcase_31 | AC | 359 ms
103,296 KB |
testcase_32 | AC | 576 ms
103,944 KB |
testcase_33 | AC | 610 ms
104,144 KB |
testcase_34 | AC | 433 ms
103,168 KB |
testcase_35 | AC | 498 ms
103,284 KB |
testcase_36 | AC | 482 ms
103,448 KB |
testcase_37 | AC | 530 ms
103,960 KB |
testcase_38 | AC | 1,642 ms
139,996 KB |
testcase_39 | AC | 950 ms
107,416 KB |
testcase_40 | AC | 2,486 ms
199,080 KB |
testcase_41 | AC | 1,147 ms
115,020 KB |
testcase_42 | AC | 1,598 ms
141,400 KB |
testcase_43 | AC | 1,381 ms
122,492 KB |
testcase_44 | AC | 1,859 ms
153,440 KB |
testcase_45 | AC | 1,837 ms
150,916 KB |
testcase_46 | AC | 1,561 ms
134,648 KB |
testcase_47 | AC | 1,720 ms
141,448 KB |
ソースコード
import sys input=sys.stdin.readline class SegmentTree(): def __init__(self,size,f=lambda x,y:x+y,default=0): self.size=pow(2,(size-1).bit_length()) self.f=f self.default=default self.data=[default]*(self.size*2) # list[i]をxに更新 def update(self,i,x): i+=self.size self.data[i]=x while i: i>>=1 self.data[i]=self.f(self.data[i*2],self.data[i*2+1]) # はじめの構築をO(N)で行う def init_build(self,ary): n=len(ary) for i in range(n): self.data[i+self.size]=ary[i] for i in reversed(range(self.size)): self.data[i]=self.f(self.data[i*2],self.data[i*2+1]) # 区間[l,r)へのクエリ def query(self,l,r): l,r=l+self.size,r+self.size lret,rret=self.default,self.default while l<r: if l&1: lret=self.f(self.data[l],lret) l+=1 if r&1: r-=1 rret=self.f(self.data[r],rret) l>>=1 r>>=1 return self.f(lret,rret) def get(self,i): return self.data[self.size+i] n=int(input()) xary=list(map(int,input().split())) q=int(input()) lrx=[list(map(int,input().split())) for _ in range(q)] events=[] for i,x in enumerate(xary): events.append([x,i]) for i,(l,r,x) in enumerate(lrx): events.append([x,i+n]) events.sort(key=lambda x:x[0]) inf=float('inf') def max(x,y): if x>y:return x return y def min(x,y): if x<y:return x return y mxst=SegmentTree(n,max,-inf) mnst=SegmentTree(n,min,inf) mnst.init_build(xary) ret=[None]*q idx=0 for x,i in events: if i<n: mxst.update(i,x) mnst.update(i,inf) else: l,r,x=lrx[i-n] y=mnst.query(l-1,r) z=mxst.query(l-1,r) tmp=inf if y!=inf:tmp=min(tmp,abs(x-y)) if z!=-inf:tmp=min(tmp,abs(x-z)) ret[i-n]=tmp print(*ret,sep='\n')