結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー lilictakalilictaka
提出日時 2022-10-17 16:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,924 ms / 6,000 ms
コード長 2,240 bytes
コンパイル時間 691 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 249,344 KB
最終ジャッジ日時 2024-06-28 06:56:12
合計ジャッジ時間 87,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,888 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 48 ms
54,016 KB
testcase_03 AC 1,343 ms
160,628 KB
testcase_04 AC 1,989 ms
208,824 KB
testcase_05 AC 1,225 ms
146,872 KB
testcase_06 AC 1,740 ms
196,660 KB
testcase_07 AC 1,998 ms
208,648 KB
testcase_08 AC 1,951 ms
207,884 KB
testcase_09 AC 1,092 ms
141,672 KB
testcase_10 AC 981 ms
135,976 KB
testcase_11 AC 1,448 ms
167,076 KB
testcase_12 AC 1,467 ms
167,340 KB
testcase_13 AC 1,065 ms
144,376 KB
testcase_14 AC 953 ms
136,580 KB
testcase_15 AC 2,311 ms
226,800 KB
testcase_16 AC 1,946 ms
195,016 KB
testcase_17 AC 835 ms
117,564 KB
testcase_18 AC 2,695 ms
248,292 KB
testcase_19 AC 2,629 ms
248,964 KB
testcase_20 AC 2,722 ms
248,324 KB
testcase_21 AC 2,796 ms
248,064 KB
testcase_22 AC 2,924 ms
249,096 KB
testcase_23 AC 2,710 ms
249,096 KB
testcase_24 AC 2,774 ms
248,584 KB
testcase_25 AC 2,787 ms
248,588 KB
testcase_26 AC 2,791 ms
248,328 KB
testcase_27 AC 2,738 ms
248,856 KB
testcase_28 AC 2,682 ms
248,932 KB
testcase_29 AC 2,777 ms
248,456 KB
testcase_30 AC 2,740 ms
248,284 KB
testcase_31 AC 2,767 ms
248,580 KB
testcase_32 AC 2,752 ms
248,584 KB
testcase_33 AC 2,458 ms
248,436 KB
testcase_34 AC 2,371 ms
248,440 KB
testcase_35 AC 2,344 ms
248,568 KB
testcase_36 AC 2,349 ms
248,324 KB
testcase_37 AC 2,493 ms
249,344 KB
testcase_38 AC 472 ms
139,652 KB
testcase_39 AC 822 ms
141,664 KB
testcase_40 AC 1,059 ms
155,036 KB
testcase_41 AC 45 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v,ope):
        self.update(i, ope(self[i],v))

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)
from collections import defaultdict
N = int(input())
A = []
T = []
for _ in range(N):
    a,t = map(int,input().split())
    A.append(a)
    T.append(t)
Q = int(input())
memo = defaultdict(list)
board = []
for i in range(N):
    memo[T[i]].append((-1,i))
    memo[T[i] + A[i]].append((0,i))
for q in range(Q):
    d,l,r = map(int,input().split())
    l-=1
    r-=1
    memo[d].append((1,q))
    board.append((l,r))
ANS = [0] * Q
keys = list(memo.keys())
keys.sort()
segcnt = SegmentTree([0] * N,lambda x,y:x+y,0)
segsum = SegmentTree([0] * N ,lambda x,y:x+y,0)
Aseg = SegmentTree(A,lambda x,y:x+y,0)
for key in keys:
    memo[key].sort()
    for t,index in memo[key]:
        if t == -1:
            segcnt.update(index,1)
            segsum.update(index,-(key-1))
        elif t == 0:
            segcnt.update(index,0)
            segsum.update(index,0)
            Aseg.update(index,0)
        else:
            l,r = board[index]
            ans = Aseg.sum(l,r+1) - (segcnt.sum(l,r+1) * key + segsum.sum(l,r+1))
            ANS[index] = ans
print(*ANS,sep='\n')
0