結果

問題 No.1441 MErGe
ユーザー first_vilfirst_vil
提出日時 2021-02-08 10:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 1,000 ms
コード長 736 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 103,948 KB
最終ジャッジ日時 2024-10-12 06:06:28
合計ジャッジ時間 11,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,600 KB
testcase_01 AC 36 ms
52,320 KB
testcase_02 AC 36 ms
52,492 KB
testcase_03 AC 67 ms
73,820 KB
testcase_04 AC 77 ms
77,660 KB
testcase_05 AC 89 ms
77,040 KB
testcase_06 AC 92 ms
76,736 KB
testcase_07 AC 93 ms
76,900 KB
testcase_08 AC 176 ms
82,276 KB
testcase_09 AC 178 ms
81,564 KB
testcase_10 AC 226 ms
81,116 KB
testcase_11 AC 213 ms
80,072 KB
testcase_12 AC 237 ms
82,520 KB
testcase_13 AC 397 ms
100,704 KB
testcase_14 AC 398 ms
100,664 KB
testcase_15 AC 427 ms
103,640 KB
testcase_16 AC 392 ms
100,628 KB
testcase_17 AC 374 ms
103,872 KB
testcase_18 AC 381 ms
98,112 KB
testcase_19 AC 427 ms
103,948 KB
testcase_20 AC 359 ms
97,500 KB
testcase_21 AC 314 ms
92,424 KB
testcase_22 AC 405 ms
92,112 KB
testcase_23 AC 490 ms
101,276 KB
testcase_24 AC 489 ms
101,536 KB
testcase_25 AC 522 ms
101,556 KB
testcase_26 AC 489 ms
101,160 KB
testcase_27 AC 514 ms
101,272 KB
testcase_28 AC 265 ms
101,272 KB
testcase_29 AC 277 ms
101,032 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