結果

問題 No.1441 MErGe
ユーザー tamatotamato
提出日時 2021-03-26 21:59:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 422 ms / 1,000 ms
コード長 1,400 bytes
コンパイル時間 1,066 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-11-28 23:07:22
合計ジャッジ時間 9,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 56 ms
73,472 KB
testcase_04 AC 62 ms
76,032 KB
testcase_05 AC 106 ms
77,312 KB
testcase_06 AC 104 ms
77,568 KB
testcase_07 AC 102 ms
77,184 KB
testcase_08 AC 168 ms
82,464 KB
testcase_09 AC 164 ms
81,528 KB
testcase_10 AC 203 ms
81,316 KB
testcase_11 AC 200 ms
80,640 KB
testcase_12 AC 209 ms
82,196 KB
testcase_13 AC 332 ms
107,264 KB
testcase_14 AC 343 ms
107,648 KB
testcase_15 AC 356 ms
104,192 KB
testcase_16 AC 406 ms
107,640 KB
testcase_17 AC 325 ms
104,192 KB
testcase_18 AC 315 ms
97,408 KB
testcase_19 AC 362 ms
103,936 KB
testcase_20 AC 287 ms
97,432 KB
testcase_21 AC 279 ms
92,672 KB
testcase_22 AC 340 ms
92,416 KB
testcase_23 AC 398 ms
108,160 KB
testcase_24 AC 393 ms
107,904 KB
testcase_25 AC 397 ms
107,648 KB
testcase_26 AC 422 ms
108,160 KB
testcase_27 AC 396 ms
107,776 KB
testcase_28 AC 198 ms
107,904 KB
testcase_29 AC 210 ms
107,904 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