結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-24 15:32:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 1,000 ms
コード長 1,009 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 115,584 KB
最終ジャッジ日時 2024-12-14 11:52:17
合計ジャッジ時間 15,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,064 KB
testcase_01 AC 38 ms
52,548 KB
testcase_02 AC 37 ms
53,072 KB
testcase_03 AC 65 ms
72,876 KB
testcase_04 AC 69 ms
74,256 KB
testcase_05 AC 121 ms
77,756 KB
testcase_06 AC 122 ms
77,656 KB
testcase_07 AC 119 ms
77,428 KB
testcase_08 AC 207 ms
84,876 KB
testcase_09 AC 207 ms
83,332 KB
testcase_10 AC 261 ms
83,276 KB
testcase_11 AC 254 ms
81,864 KB
testcase_12 AC 271 ms
84,996 KB
testcase_13 AC 488 ms
114,964 KB
testcase_14 AC 437 ms
114,656 KB
testcase_15 AC 584 ms
102,932 KB
testcase_16 AC 426 ms
112,708 KB
testcase_17 AC 454 ms
102,676 KB
testcase_18 AC 398 ms
107,164 KB
testcase_19 AC 431 ms
101,980 KB
testcase_20 AC 348 ms
106,688 KB
testcase_21 AC 340 ms
100,240 KB
testcase_22 AC 430 ms
99,324 KB
testcase_23 AC 571 ms
115,236 KB
testcase_24 AC 580 ms
115,252 KB
testcase_25 AC 522 ms
114,856 KB
testcase_26 AC 522 ms
115,220 KB
testcase_27 AC 518 ms
115,584 KB
testcase_28 AC 281 ms
114,960 KB
testcase_29 AC 299 ms
115,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys

    def add(i, x):
        i += 1
        while i < n+1:
            table[i] += x
            i += i & -i

    def rank(x):
        if x == 0: return 0
        idx = 0
        d = 1 << n.bit_length()-1
        while d:
            if idx+d <= n and table[idx+d] < x:
                x -= table[idx+d]
                idx |= d
            d >>= 1
        return idx

    n, q = list(map(int, sys.stdin.readline().split()))
    aa = list(map(int, sys.stdin.readline().split()))

    cs = [0]
    for a in aa: cs.append(cs[-1]+a)

    table = [0]*(n+1)
    for i in range(1, n): add(i, 1)

    rr = list(range(1, n+1))

    for _ in range(q):
        t, l, r = list(map(int, sys.stdin.readline().split()))
        l -= 1
        if t == 1:
            i = rank(l)
            for _ in range(r-l-1):
                j = rr[i]
                add(j, -1)
                rr[i] = rr[j]
        else:
            i = rank(l)
            j = rank(r)
            print(cs[j]-cs[i])

main()
0