結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-23 18:32:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 1,000 ms
コード長 1,306 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,912 KB
最終ジャッジ日時 2024-11-29 22:23:31
合計ジャッジ時間 12,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 77 ms
73,344 KB
testcase_04 AC 88 ms
75,648 KB
testcase_05 AC 136 ms
77,312 KB
testcase_06 AC 136 ms
77,056 KB
testcase_07 AC 134 ms
77,056 KB
testcase_08 AC 215 ms
84,312 KB
testcase_09 AC 218 ms
83,264 KB
testcase_10 AC 287 ms
82,692 KB
testcase_11 AC 265 ms
81,280 KB
testcase_12 AC 278 ms
84,436 KB
testcase_13 AC 477 ms
114,724 KB
testcase_14 AC 452 ms
114,292 KB
testcase_15 AC 598 ms
102,272 KB
testcase_16 AC 444 ms
112,984 KB
testcase_17 AC 482 ms
102,400 KB
testcase_18 AC 442 ms
106,880 KB
testcase_19 AC 457 ms
102,016 KB
testcase_20 AC 367 ms
107,008 KB
testcase_21 AC 351 ms
99,328 KB
testcase_22 AC 466 ms
98,688 KB
testcase_23 AC 588 ms
114,776 KB
testcase_24 AC 569 ms
114,788 KB
testcase_25 AC 511 ms
114,648 KB
testcase_26 AC 532 ms
114,912 KB
testcase_27 AC 543 ms
114,660 KB
testcase_28 AC 289 ms
114,524 KB
testcase_29 AC 303 ms
114,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def LI(): return list(map(int, sys.stdin.readline().split()))

class BitSum:
    def __init__(self, n):
        self.n = n+1
        self.table = [0]*self.n

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

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            i -= i & -i
        return res

    def rank(self, x):
        idx = 0
        for lv in range((self.n-1).bit_length()-1, -1, -1):
            mid = idx+(1 << lv)
            if mid >= self.n: continue
            if self.table[mid] < x:
                x -= self.table[mid]
                idx += 1 << lv
        return idx

def main():
    n, q = LI()
    aa = LI()

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

    bit = BitSum(n)
    for i in range(1, n): bit.add(i, 1)

    lr = list(range(n))

    for _ in range(q):
        t, l, r = LI()
        l -= 1
        if t == 1:
            i = bit.rank(l)
            for _ in range(r-l-1):
                j = lr[i]+1
                bit.add(j, -1)
                k = lr[j]
                lr[k] = i
                lr[i] = k
        else:
            i = bit.rank(l)
            j = bit.rank(r)
            print(cs[j]-cs[i])

main()
0