結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-23 18:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 576 ms / 1,000 ms
コード長 1,061 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 115,412 KB
最終ジャッジ日時 2024-05-07 08:09:07
合計ジャッジ時間 12,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 33 ms
52,608 KB
testcase_03 AC 59 ms
73,600 KB
testcase_04 AC 66 ms
75,904 KB
testcase_05 AC 111 ms
77,824 KB
testcase_06 AC 116 ms
77,824 KB
testcase_07 AC 108 ms
77,824 KB
testcase_08 AC 197 ms
84,908 KB
testcase_09 AC 187 ms
83,512 KB
testcase_10 AC 246 ms
83,064 KB
testcase_11 AC 232 ms
81,536 KB
testcase_12 AC 259 ms
84,812 KB
testcase_13 AC 497 ms
115,240 KB
testcase_14 AC 442 ms
114,684 KB
testcase_15 AC 568 ms
102,400 KB
testcase_16 AC 407 ms
113,216 KB
testcase_17 AC 433 ms
102,528 KB
testcase_18 AC 402 ms
107,648 KB
testcase_19 AC 439 ms
102,400 KB
testcase_20 AC 345 ms
106,624 KB
testcase_21 AC 325 ms
99,732 KB
testcase_22 AC 446 ms
99,712 KB
testcase_23 AC 576 ms
115,412 KB
testcase_24 AC 563 ms
115,084 KB
testcase_25 AC 494 ms
114,900 KB
testcase_26 AC 522 ms
115,024 KB
testcase_27 AC 512 ms
114,960 KB
testcase_28 AC 280 ms
114,760 KB
testcase_29 AC 294 ms
114,944 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