結果

問題 No.1441 MErGe
ユーザー tamatotamato
提出日時 2021-03-26 21:59:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 1,000 ms
コード長 1,400 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,288 KB
最終ジャッジ日時 2024-05-06 15:30:15
合計ジャッジ時間 12,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 79 ms
73,344 KB
testcase_04 AC 85 ms
76,328 KB
testcase_05 AC 142 ms
77,528 KB
testcase_06 AC 141 ms
77,576 KB
testcase_07 AC 137 ms
77,696 KB
testcase_08 AC 218 ms
82,968 KB
testcase_09 AC 208 ms
81,864 KB
testcase_10 AC 258 ms
81,756 KB
testcase_11 AC 247 ms
80,640 KB
testcase_12 AC 253 ms
82,708 KB
testcase_13 AC 403 ms
107,508 KB
testcase_14 AC 417 ms
107,392 KB
testcase_15 AC 433 ms
104,064 KB
testcase_16 AC 510 ms
107,520 KB
testcase_17 AC 396 ms
104,320 KB
testcase_18 AC 406 ms
97,792 KB
testcase_19 AC 461 ms
103,808 KB
testcase_20 AC 370 ms
97,536 KB
testcase_21 AC 343 ms
92,544 KB
testcase_22 AC 412 ms
92,288 KB
testcase_23 AC 493 ms
108,020 KB
testcase_24 AC 493 ms
108,060 KB
testcase_25 AC 495 ms
107,904 KB
testcase_26 AC 533 ms
108,288 KB
testcase_27 AC 479 ms
107,904 KB
testcase_28 AC 242 ms
108,288 KB
testcase_29 AC 273 ms
107,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    bit = Bit(N)
    cs = [0] * (N+1)
    for i in range(1, N+1):
        bit.add(i, 1)
        cs[i] = cs[i-1] + A[i-1]
    for _ in range(Q):
        t, l, r = map(int, input().split())
        if t == 1:
            for _ in range(r - l):
                i = bit.lower_bound(l+1)
                bit.add(i, -1)
        else:
            il = bit.lower_bound(l)
            ir = bit.lower_bound(r+1)
            print(cs[ir-1] - cs[il-1])


if __name__ == '__main__':
    main()
0