結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー kazuppakazuppa
提出日時 2024-10-05 23:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,695 ms / 6,000 ms
コード長 1,040 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 229,716 KB
最終ジャッジ日時 2024-11-15 13:19:35
合計ジャッジ時間 27,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,400 KB
testcase_01 AC 60 ms
69,760 KB
testcase_02 AC 62 ms
70,016 KB
testcase_03 AC 62 ms
69,760 KB
testcase_04 AC 61 ms
70,400 KB
testcase_05 AC 66 ms
70,400 KB
testcase_06 AC 62 ms
70,144 KB
testcase_07 AC 67 ms
72,320 KB
testcase_08 AC 99 ms
80,856 KB
testcase_09 AC 79 ms
77,328 KB
testcase_10 AC 80 ms
76,992 KB
testcase_11 AC 1,013 ms
167,272 KB
testcase_12 AC 2,224 ms
208,988 KB
testcase_13 AC 2,268 ms
122,312 KB
testcase_14 AC 1,100 ms
197,736 KB
testcase_15 AC 729 ms
229,716 KB
testcase_16 AC 2,059 ms
102,288 KB
testcase_17 AC 521 ms
138,260 KB
testcase_18 AC 1,633 ms
144,996 KB
testcase_19 AC 2,695 ms
145,664 KB
testcase_20 AC 685 ms
155,688 KB
testcase_21 AC 1,634 ms
215,752 KB
testcase_22 AC 1,646 ms
215,736 KB
testcase_23 AC 947 ms
112,492 KB
testcase_24 AC 63 ms
70,016 KB
testcase_25 AC 62 ms
70,016 KB
testcase_26 AC 2,077 ms
218,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing


class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

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

        return s

N,Q,L=map(int,input().split())
A=list(map(int,input().split()))
f1=FenwickTree(200001)
f2=FenwickTree(200001)
for i in A:
	f1.add(i,1)
	f2.add(i,i)
flg=True
for i in range(Q):
	t,*q=list(map(int,input().split()))
	if t==1:
		l=q[0]
		f1.add(l,1)
		f2.add(l,l)
	if t==2:
		flg=False
		l,r=q
		print(f1.sum(l,r+1),f2.sum(l,r+1))
if flg:
	print("Not Found!")
0