結果
問題 | No.876 Range Compress Query |
ユーザー | tachyon777 |
提出日時 | 2020-03-05 19:51:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,332 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 81,832 KB |
実行使用メモリ | 91,656 KB |
最終ジャッジ日時 | 2024-10-14 02:05:47 |
合計ジャッジ時間 | 3,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,224 KB |
testcase_01 | WA | - |
testcase_02 | AC | 39 ms
52,864 KB |
testcase_03 | WA | - |
testcase_04 | AC | 48 ms
59,392 KB |
testcase_05 | AC | 41 ms
56,960 KB |
testcase_06 | AC | 53 ms
64,512 KB |
testcase_07 | WA | - |
testcase_08 | AC | 49 ms
63,360 KB |
testcase_09 | WA | - |
testcase_10 | AC | 50 ms
63,488 KB |
testcase_11 | AC | 199 ms
88,448 KB |
testcase_12 | AC | 186 ms
87,040 KB |
testcase_13 | AC | 187 ms
88,220 KB |
testcase_14 | AC | 194 ms
88,320 KB |
testcase_15 | AC | 180 ms
89,820 KB |
testcase_16 | AC | 197 ms
91,520 KB |
testcase_17 | AC | 205 ms
91,620 KB |
testcase_18 | AC | 210 ms
91,656 KB |
ソースコード
import sys readline = sys.stdin.buffer.readline n,q = map(int,readline().split()) lst1 = list(map(int,readline().split())) lst2 = [0]*n for i in range(n-1,0,-1): lst1[i] -= lst1[i-1] for i in range(n): if lst1[i] == 0: lst2[i] = 1 #####segfunc###### def segfunc(x,y): return x+y def init(init_val): #渡されたリストでsegを初期化 #set_val for i in range(n): seg[i+num-1]=init_val[i] #built for i in range(num-2,-1,-1) : seg[i]=segfunc(seg[2*i+1],seg[2*i+2]) def update(k,x): #segの要素kをxに変更(セグ木全体の更新) k += num-1 seg[k] = x while k: k = (k-1)//2 seg[k] = segfunc(seg[k*2+1],seg[k*2+2]) def query(p,q): #区間[p,q)での、segfuncに準じた値を返す if q<=p: return ide_ele p += num-1 q += num-2 res=ide_ele while q-p>1: if p&1 == 0: res = segfunc(res,seg[p]) if q&1 == 1: res = segfunc(res,seg[q]) q -= 1 p = p//2 q = (q-1)//2 if p == q: res = segfunc(res,seg[p]) else: res = segfunc(segfunc(res,seg[p]),seg[q]) return res #####単位元###### """ 最小値のセグ木 → 10**9 (最小値の更新に影響しないため) 和のセグ木 → 0 (上の単位元の説明を参照) 積のセグ木 → 1 (上の単位元の説明を参照) gcdのセグ木 → 0 (gcdを更新しない値は0) """ ide_ele = 0 #num:n以上の最小の2のべき乗 num =2**(n-1).bit_length() seg=[ide_ele]*2*num #単位元の配列(計算結果に影響を及ぼさない配列)を作成 init(lst2) for _ in range(q): s = readline().rstrip().decode('utf-8') if s[0] == "1": com,l,r,x = map(int,s.split()) l,r = l-1,r-1 if l != 0: if lst1[l-1] == lst1[l]+x: update(l,1) lst1[l] += x else: update(l,0) lst1[l] += x if r != n-1: if lst1[r+1]-x == lst1[r]: update(r+1,1) lst1[r+1] -= x else: update(r+1,0) lst1[r+1] -= x else: com,l,r = map(int,s.split()) l,r = l-1,r-1 sub = query(l+1,r+1) print(r+1-l -sub)