結果
問題 | No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに |
ユーザー | titia |
提出日時 | 2022-10-15 04:50:48 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,778 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 371,392 KB |
最終ジャッジ日時 | 2024-06-26 19:24:49 |
合計ジャッジ時間 | 60,628 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
371,392 KB |
testcase_01 | AC | 41 ms
52,864 KB |
testcase_02 | AC | 37 ms
52,608 KB |
testcase_03 | AC | 3,770 ms
273,532 KB |
testcase_04 | AC | 4,930 ms
303,704 KB |
testcase_05 | AC | 2,945 ms
268,068 KB |
testcase_06 | AC | 4,631 ms
294,880 KB |
testcase_07 | AC | 5,578 ms
311,604 KB |
testcase_08 | AC | 4,631 ms
299,888 KB |
testcase_09 | AC | 2,666 ms
268,300 KB |
testcase_10 | AC | 2,310 ms
266,328 KB |
testcase_11 | AC | 3,340 ms
266,828 KB |
testcase_12 | AC | 3,256 ms
267,016 KB |
testcase_13 | AC | 2,458 ms
266,752 KB |
testcase_14 | AC | 1,154 ms
131,716 KB |
testcase_15 | AC | 5,985 ms
324,372 KB |
testcase_16 | AC | 5,492 ms
303,100 KB |
testcase_17 | AC | 1,164 ms
154,648 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
import sys import io, os input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline from operator import itemgetter N=int(input()) AT=[list(map(int,input().split())) for i in range(N)] Q=int(input()) QU=[list(map(int,input().split()))+[i] for i in range(Q)] # Segment tree(1-indexed,再帰を使わないもの) def seg_function(x,y): # Segment treeで扱うfunction return [x[i]+y[i] for i in range(3)] seg_el=1<<(N.bit_length()) # Segment treeの台の要素数 SEG=[[0,0,0] for i in range(2*seg_el)] # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化 for i in range(N): # Aを対応する箇所へupdate SEG[i+seg_el]=[AT[i][0],0,0] for i in range(seg_el-1,0,-1): # 親の部分もupdate SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) def update(n,x,seg_el): # A[n]をxへ更新 i=n+seg_el SEG[i]=x i>>=1 # 子ノードへ while i!=0: SEG[i]=seg_function(SEG[i*2],SEG[i*2+1]) i>>=1 def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる L=l+seg_el R=r+seg_el ANS=[0,0,0] while L<R: if L & 1: ANS=seg_function(ANS , SEG[L]) L+=1 if R & 1: R-=1 ANS=seg_function(ANS , SEG[R]) L>>=1 R>>=1 return ANS for i in range(N): a,t=AT[i] if a==0: continue QU.append((t,a,i)) QU.append((t+a,i)) QU.sort(key=len) QU.sort(key=itemgetter(0)) ANS=[-1]*Q for q in QU: if len(q)==4: d,l,r,ind=q x,y,z=getvalues(l-1,r) #print(x,y,z) ANS[ind]=x-d*z+y elif len(q)==3: t,a,i=q update(i,[a,t-1,1],seg_el) else: t,i=q update(i,[0,0,0],seg_el) print("\n".join(map(str,ANS)))