結果
問題 | No.1332 Range Nearest Query |
ユーザー | persimmon-persimmon |
提出日時 | 2021-02-14 10:32:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,158 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 281,492 KB |
最終ジャッジ日時 | 2024-07-21 16:15:47 |
合計ジャッジ時間 | 77,180 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,608 KB |
testcase_01 | AC | 42 ms
52,608 KB |
testcase_02 | AC | 42 ms
52,736 KB |
testcase_03 | AC | 2,273 ms
265,544 KB |
testcase_04 | AC | 2,260 ms
266,248 KB |
testcase_05 | AC | 2,205 ms
266,492 KB |
testcase_06 | AC | 1,322 ms
279,364 KB |
testcase_07 | AC | 1,324 ms
279,620 KB |
testcase_08 | AC | 1,379 ms
279,608 KB |
testcase_09 | AC | 1,348 ms
279,740 KB |
testcase_10 | AC | 1,309 ms
279,632 KB |
testcase_11 | AC | 1,345 ms
279,724 KB |
testcase_12 | AC | 1,332 ms
279,872 KB |
testcase_13 | AC | 1,349 ms
280,128 KB |
testcase_14 | AC | 1,326 ms
279,764 KB |
testcase_15 | AC | 1,363 ms
279,872 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,005 ms
273,808 KB |
testcase_27 | AC | 738 ms
281,492 KB |
testcase_28 | AC | 577 ms
104,516 KB |
testcase_29 | AC | 644 ms
105,168 KB |
testcase_30 | AC | 720 ms
105,808 KB |
testcase_31 | AC | 420 ms
103,880 KB |
testcase_32 | AC | 729 ms
105,752 KB |
testcase_33 | AC | 740 ms
106,064 KB |
testcase_34 | AC | 517 ms
104,276 KB |
testcase_35 | AC | 600 ms
104,900 KB |
testcase_36 | AC | 597 ms
105,376 KB |
testcase_37 | AC | 628 ms
104,788 KB |
testcase_38 | AC | 1,757 ms
193,728 KB |
testcase_39 | AC | 1,080 ms
145,408 KB |
testcase_40 | TLE | - |
testcase_41 | AC | 1,348 ms
165,636 KB |
testcase_42 | AC | 1,713 ms
190,196 KB |
testcase_43 | AC | 1,493 ms
169,984 KB |
testcase_44 | AC | 2,062 ms
272,740 KB |
testcase_45 | AC | 1,943 ms
245,468 KB |
testcase_46 | AC | 1,666 ms
178,192 KB |
testcase_47 | AC | 1,813 ms
203,264 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] def main1(n,xary,q,lrx): s=set(xary) for l,r,x in lrx:s.add(x) s=list(s) s.sort() numx=len(s) d={si:i for i,si in enumerate(s)} dr={i:si for i,si in enumerate(s)} didx={} for i,xv in enumerate(xary): xv=d[xv] if xv in didx: didx[xv].add(i) else: didx[xv]={i} del s inf=float('inf') mxst=SegmentTree(n,max,-inf) mnst=SegmentTree(n,min,inf) mnst.init_build([d[x] for x in xary]) lrx=[[d[x],l,r,i] for i,(l,r,x) in enumerate(lrx)] lrx.sort() ret=[None]*q idx=0 for x in range(numx): while idx<q and lrx[idx][0]==x: _,l,r,i=lrx[idx] y=mnst.query(l-1,r) z=mxst.query(l-1,r) tmp=inf if y!=inf:tmp=min(tmp,abs(dr[x]-dr[y])) if z!=-inf:tmp=min(tmp,abs(dr[x]-dr[z])) ret[i]=tmp idx+=1 if idx==q:return ret if x not in didx:continue for i in didx[x]: mxst.update(i,x) mnst.update(i,inf) return ret if __name__=='__main__': n=int(input()) xary=list(map(int,input().split())) q=int(input()) lrx=[list(map(int,input().split())) for _ in range(q)] ret1=main1(n,xary,q,lrx) print(*ret1,sep='\n')