結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー rlangevinrlangevin
提出日時 2024-10-22 00:13:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,600 ms / 6,000 ms
コード長 1,590 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 236,896 KB
最終ジャッジ日時 2024-11-15 12:12:56
合計ジャッジ時間 20,126 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,276 KB
testcase_01 AC 41 ms
55,676 KB
testcase_02 AC 41 ms
55,040 KB
testcase_03 AC 41 ms
55,680 KB
testcase_04 AC 42 ms
55,936 KB
testcase_05 AC 43 ms
55,168 KB
testcase_06 AC 43 ms
55,040 KB
testcase_07 AC 53 ms
62,884 KB
testcase_08 AC 63 ms
71,040 KB
testcase_09 AC 55 ms
65,664 KB
testcase_10 AC 56 ms
66,688 KB
testcase_11 AC 817 ms
186,588 KB
testcase_12 AC 1,519 ms
180,576 KB
testcase_13 AC 1,324 ms
126,780 KB
testcase_14 AC 785 ms
216,340 KB
testcase_15 AC 678 ms
197,648 KB
testcase_16 AC 1,246 ms
120,444 KB
testcase_17 AC 403 ms
116,812 KB
testcase_18 AC 1,014 ms
126,316 KB
testcase_19 AC 1,585 ms
153,816 KB
testcase_20 AC 573 ms
172,744 KB
testcase_21 AC 1,600 ms
236,896 KB
testcase_22 AC 1,551 ms
236,768 KB
testcase_23 AC 597 ms
108,544 KB
testcase_24 AC 43 ms
55,296 KB
testcase_25 AC 42 ms
55,168 KB
testcase_26 AC 1,201 ms
198,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    # T.sum(0, x) <= kとなる最大のxを返す。
    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

    def __str__(self):
        temp = []
        for i in range(self._n):
            temp.append(str(self.sum(i, i + 1)))
        return ' '.join(temp)



N, Q, L = map(int, input().split())
A = list(map(int, input().split()))
M = 2 * 10 ** 5 + 5
Tn = Fenwick_Tree(M)
Ts = Fenwick_Tree(M)
for a in A:
    Tn.add(a, 1)
    Ts.add(a, a)
ans = []
for _ in range(Q):
    q = list(map(int, input().split()))
    if q[0] == 1:
        l = q[1]
        Tn.add(l, 1)
        Ts.add(l, l)
    elif q[0] == 2:
        l, r = q[1:]
        ans.append((Tn.sum(l, r + 1), Ts.sum(l, r + 1)))

if ans:
    for a, b in ans:
        print(a, b)
else:
    print("Not Found!") 
0