結果

問題 No.1441 MErGe
ユーザー mkawa2mkawa2
提出日時 2022-01-23 18:32:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 586 ms / 1,000 ms
コード長 1,306 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 115,296 KB
最終ジャッジ日時 2024-05-07 07:30:47
合計ジャッジ時間 12,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 67 ms
72,704 KB
testcase_04 AC 73 ms
76,160 KB
testcase_05 AC 118 ms
77,824 KB
testcase_06 AC 117 ms
77,440 KB
testcase_07 AC 116 ms
77,696 KB
testcase_08 AC 196 ms
84,752 KB
testcase_09 AC 201 ms
83,384 KB
testcase_10 AC 269 ms
82,940 KB
testcase_11 AC 235 ms
81,676 KB
testcase_12 AC 255 ms
84,436 KB
testcase_13 AC 461 ms
114,284 KB
testcase_14 AC 446 ms
114,168 KB
testcase_15 AC 557 ms
102,656 KB
testcase_16 AC 402 ms
112,656 KB
testcase_17 AC 428 ms
102,264 KB
testcase_18 AC 390 ms
107,264 KB
testcase_19 AC 419 ms
101,888 KB
testcase_20 AC 346 ms
106,752 KB
testcase_21 AC 332 ms
99,968 KB
testcase_22 AC 429 ms
99,948 KB
testcase_23 AC 586 ms
114,852 KB
testcase_24 AC 538 ms
114,916 KB
testcase_25 AC 492 ms
114,912 KB
testcase_26 AC 503 ms
115,296 KB
testcase_27 AC 529 ms
115,220 KB
testcase_28 AC 267 ms
114,788 KB
testcase_29 AC 279 ms
114,988 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