結果

問題 No.1441 MErGe
ユーザー first_vilfirst_vil
提出日時 2021-02-08 10:55:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 738 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 103,844 KB
最終ジャッジ日時 2024-10-12 06:05:55
合計ジャッジ時間 11,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 RE -
testcase_03 AC 66 ms
73,600 KB
testcase_04 AC 75 ms
77,056 KB
testcase_05 AC 89 ms
76,416 KB
testcase_06 AC 91 ms
76,544 KB
testcase_07 AC 95 ms
76,788 KB
testcase_08 AC 174 ms
82,068 KB
testcase_09 AC 176 ms
81,508 KB
testcase_10 AC 224 ms
81,364 KB
testcase_11 AC 209 ms
80,240 KB
testcase_12 AC 232 ms
81,936 KB
testcase_13 AC 400 ms
100,772 KB
testcase_14 AC 401 ms
100,596 KB
testcase_15 AC 420 ms
103,844 KB
testcase_16 AC 393 ms
100,816 KB
testcase_17 AC 372 ms
103,552 KB
testcase_18 AC 384 ms
97,544 KB
testcase_19 AC 431 ms
103,424 KB
testcase_20 AC 358 ms
97,468 KB
testcase_21 AC 321 ms
92,672 KB
testcase_22 AC 399 ms
92,160 KB
testcase_23 AC 479 ms
101,160 KB
testcase_24 AC 479 ms
101,300 KB
testcase_25 AC 509 ms
101,300 KB
testcase_26 AC 485 ms
101,292 KB
testcase_27 AC 488 ms
101,344 KB
testcase_28 AC 263 ms
101,048 KB
testcase_29 AC 275 ms
100,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  import sys
  input=sys.stdin.readline
  n,q=map(int,input().split())
  a=list(map(int,input().split()))

  #BIT
  dat=[0]*(n+10)
  def add(i,a):
    i+=1
    while i<=n:
      dat[i]+=a
      i+=i&-i
  def binary_search(x):
    i=1
    while i*2<=n:
      i*=2 
      res=0
    while i:
      if res+i<=n and x>dat[res+i]:
        x-=dat[res+i]
        res+=i
      i//=2
    return res
  for i in range(n):
    add(i,1)
  #end
  
  for i in range(1,n):
    a[i]+=a[i-1]
  for _ in range(q):
    t,l,r=map(int,input().split())
    if t==1:
      d=r-l
      for _ in range(d):
        add(binary_search(l+1),-1)
    else:
      R=binary_search(r+1)-1
      L=binary_search(l)
      print(a[R]-(a[L-1] if L!=0 else 0))
main()
0