結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-24 15:32:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 631 ms / 1,000 ms
コード長 1,009 bytes
コンパイル時間 633 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 115,224 KB
最終ジャッジ日時 2024-05-08 09:06:50
合計ジャッジ時間 15,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,272 KB
testcase_01 AC 39 ms
53,932 KB
testcase_02 AC 39 ms
52,760 KB
testcase_03 AC 66 ms
72,804 KB
testcase_04 AC 71 ms
74,844 KB
testcase_05 AC 124 ms
77,444 KB
testcase_06 AC 125 ms
77,880 KB
testcase_07 AC 122 ms
77,596 KB
testcase_08 AC 211 ms
85,152 KB
testcase_09 AC 207 ms
83,580 KB
testcase_10 AC 273 ms
83,404 KB
testcase_11 AC 265 ms
81,968 KB
testcase_12 AC 284 ms
85,132 KB
testcase_13 AC 529 ms
115,224 KB
testcase_14 AC 470 ms
114,536 KB
testcase_15 AC 631 ms
102,588 KB
testcase_16 AC 458 ms
112,948 KB
testcase_17 AC 475 ms
102,696 KB
testcase_18 AC 413 ms
107,488 KB
testcase_19 AC 440 ms
102,168 KB
testcase_20 AC 351 ms
107,052 KB
testcase_21 AC 346 ms
100,096 KB
testcase_22 AC 438 ms
99,444 KB
testcase_23 AC 600 ms
115,092 KB
testcase_24 AC 623 ms
115,124 KB
testcase_25 AC 549 ms
115,136 KB
testcase_26 AC 540 ms
114,956 KB
testcase_27 AC 548 ms
114,980 KB
testcase_28 AC 289 ms
114,964 KB
testcase_29 AC 302 ms
115,100 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