結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー tassei903tassei903
提出日時 2024-10-18 21:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,854 ms / 6,000 ms
コード長 2,021 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 246,504 KB
最終ジャッジ日時 2024-11-15 15:58:13
合計ジャッジ時間 21,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,136 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 44 ms
58,880 KB
testcase_03 AC 45 ms
58,752 KB
testcase_04 AC 45 ms
59,008 KB
testcase_05 AC 44 ms
58,752 KB
testcase_06 AC 44 ms
58,880 KB
testcase_07 AC 51 ms
66,176 KB
testcase_08 AC 67 ms
74,368 KB
testcase_09 AC 59 ms
70,016 KB
testcase_10 AC 61 ms
70,400 KB
testcase_11 AC 880 ms
190,272 KB
testcase_12 AC 1,732 ms
183,348 KB
testcase_13 AC 1,444 ms
120,704 KB
testcase_14 AC 835 ms
220,396 KB
testcase_15 AC 754 ms
200,792 KB
testcase_16 AC 1,346 ms
105,304 KB
testcase_17 AC 453 ms
119,944 KB
testcase_18 AC 1,143 ms
128,456 KB
testcase_19 AC 1,781 ms
139,136 KB
testcase_20 AC 654 ms
177,544 KB
testcase_21 AC 1,854 ms
246,100 KB
testcase_22 AC 1,844 ms
246,504 KB
testcase_23 AC 638 ms
112,896 KB
testcase_24 AC 43 ms
58,496 KB
testcase_25 AC 43 ms
58,880 KB
testcase_26 AC 1,198 ms
202,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


# Binary Indexed Tree (Fenwick Tree)
# 0-indexed
class BIT:
    def __init__(self, n):
        self.n = n
        self.data = [0]*(n+1)
        self.el = [0]*(n+1)
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= i & -i
        return s
    def add(self, i, x):
        assert 0 <= i < self.n
        i = i+1
        self.el[i] += x
        while i <= self.n:
            self.data[i] += x
            i += i & -i
    def set(self, i, x):
        assert 0 <= i <= self.n
        self.add(i,x-self.get(i))
    def get(self, i, j=None):# j=Noneのときiを取得, [i, j)の和を取得
        if j is None:
            return self.el[i+1]
        return self.sum(j) - self.sum(i)
    def lower_bound(self, k):# a[0],…,a[i]>kなる最小のi
        n = self.n
        x = 0
        r = 1
        while r <= n:r <<= 1
        size = r
        while size:
            if x + size <= n and self.data[x+size] <= k:
                k-=self.data[x+size]
                x += size
            size >>= 1
        return x
    def debug(self):
        res = []
        n = self.n
        for i in range(n):
            res.append(self.get(i))
        print(*res)

m = 2 * 10 ** 5 + 10

n, q, _ = na()
a = na()

bit1 = BIT(m)
bit2 = BIT(m)
FLAG = 0
for i in range(n):
    bit1.add(a[i], 1)
    bit2.add(a[i], a[i])

for _ in range(q):
    que = na()
    if que[0] == 1:
        l = que[1]
        bit1.add(l, 1)
        bit2.add(l, l)
    elif que[0] == 2:
        FLAG = 1
        l, r = que[1], que[2] + 1
        print(bit1.get(l, r), bit2.get(l, r))
    else:
        continue

if FLAG == 0:
    print("Not Found!")
0