結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-23 18:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 1,000 ms
コード長 1,061 bytes
コンパイル時間 1,535 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 115,364 KB
最終ジャッジ日時 2024-11-29 23:21:57
合計ジャッジ時間 15,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 69 ms
72,960 KB
testcase_04 AC 81 ms
75,548 KB
testcase_05 AC 135 ms
77,260 KB
testcase_06 AC 133 ms
77,304 KB
testcase_07 AC 130 ms
77,604 KB
testcase_08 AC 229 ms
84,956 KB
testcase_09 AC 232 ms
83,292 KB
testcase_10 AC 298 ms
82,808 KB
testcase_11 AC 277 ms
81,536 KB
testcase_12 AC 305 ms
84,432 KB
testcase_13 AC 547 ms
114,776 KB
testcase_14 AC 508 ms
114,100 KB
testcase_15 AC 654 ms
102,328 KB
testcase_16 AC 485 ms
112,644 KB
testcase_17 AC 536 ms
102,224 KB
testcase_18 AC 456 ms
106,752 KB
testcase_19 AC 492 ms
101,688 KB
testcase_20 AC 402 ms
106,244 KB
testcase_21 AC 376 ms
99,456 KB
testcase_22 AC 504 ms
99,456 KB
testcase_23 AC 689 ms
114,892 KB
testcase_24 AC 659 ms
115,364 KB
testcase_25 AC 580 ms
114,768 KB
testcase_26 AC 621 ms
114,896 KB
testcase_27 AC 617 ms
114,768 KB
testcase_28 AC 314 ms
114,820 KB
testcase_29 AC 329 ms
114,584 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):
        idx = 0
        for lv in range(n.bit_length()-1, -1, -1):
            mid = idx+(1 << lv)
            if mid >= n+1: continue
            if table[mid] < x:
                x -= table[mid]
                idx += 1 << lv
        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)

    lr = list(range(n))

    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 = lr[i]+1
                add(j, -1)
                k = lr[j]
                lr[k] = i
                lr[i] = k
        else:
            i = rank(l)
            j = rank(r)
            print(cs[j]-cs[i])

main()
0