結果

問題 No.2101 [Cherry Alpha N] ずっとこの数列だったらいいのに
ユーザー roarisroaris
提出日時 2022-10-15 02:09:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,125 ms / 6,000 ms
コード長 1,364 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 182,656 KB
最終ジャッジ日時 2024-06-26 19:12:56
合計ジャッジ時間 94,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 1,567 ms
134,844 KB
testcase_04 AC 2,093 ms
152,604 KB
testcase_05 AC 1,416 ms
128,300 KB
testcase_06 AC 2,007 ms
146,620 KB
testcase_07 AC 2,397 ms
160,184 KB
testcase_08 AC 2,123 ms
152,348 KB
testcase_09 AC 1,223 ms
125,568 KB
testcase_10 AC 1,038 ms
116,736 KB
testcase_11 AC 1,554 ms
132,180 KB
testcase_12 AC 1,680 ms
132,792 KB
testcase_13 AC 1,164 ms
118,272 KB
testcase_14 AC 918 ms
108,632 KB
testcase_15 AC 2,658 ms
167,060 KB
testcase_16 AC 2,314 ms
157,156 KB
testcase_17 AC 719 ms
103,056 KB
testcase_18 AC 3,000 ms
182,312 KB
testcase_19 AC 3,057 ms
182,428 KB
testcase_20 AC 3,094 ms
182,292 KB
testcase_21 AC 3,062 ms
181,920 KB
testcase_22 AC 3,102 ms
181,908 KB
testcase_23 AC 3,016 ms
181,836 KB
testcase_24 AC 3,076 ms
182,328 KB
testcase_25 AC 3,030 ms
181,924 KB
testcase_26 AC 3,042 ms
182,396 KB
testcase_27 AC 3,043 ms
182,656 KB
testcase_28 AC 3,044 ms
182,156 KB
testcase_29 AC 3,009 ms
182,528 KB
testcase_30 AC 3,042 ms
182,160 KB
testcase_31 AC 3,084 ms
182,348 KB
testcase_32 AC 3,125 ms
182,420 KB
testcase_33 AC 2,923 ms
174,872 KB
testcase_34 AC 2,956 ms
174,192 KB
testcase_35 AC 2,911 ms
174,464 KB
testcase_36 AC 2,920 ms
174,840 KB
testcase_37 AC 2,949 ms
175,104 KB
testcase_38 AC 255 ms
102,392 KB
testcase_39 AC 992 ms
117,568 KB
testcase_40 AC 1,078 ms
170,600 KB
testcase_41 AC 43 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(n+1)
    
    def add(self, i, x):
        i += 1
        
        while i<=self.n:
            self.bit[i] += x
            i += i&(-i)
    
    def update(self, i, x):
        self.add(i, -self.acc(i+1)+self.acc(i))
        self.add(i, x)

    def acc(self, i):
        s = 0
        
        while i>0:
            s += self.bit[i]
            i -= i&(-i)
        
        return s
    
    def get(self, l, r):
        return self.acc(r)-self.acc(l)

N = int(input())
AT = [tuple(map(int, input().split())) for _ in range(N)]
updates = []

for i in range(N):
    A, T = AT[i]
    updates.append((T-1, i, -1, A+T-1))
    updates.append((T+A, i, 0, 0))

updates.sort()
Q = int(input())
DLRI = []

for i in range(Q):
    D, L, R = map(int, input().split())
    DLRI.append((D, L, R, i))

DLRI.sort()

ans = [-1]*Q
idx = 0
bit1 = BIT(N)
bit2 = BIT(N)

for i in range(N):
    bit2.add(i, AT[i][0])

for D, L, R, I in DLRI:
    while idx<2*N and updates[idx][0]<=D:
        bit1.update(updates[idx][1], updates[idx][2])
        bit2.update(updates[idx][1], updates[idx][3])
        idx += 1
    
    a = bit1.acc(R)-bit1.acc(L-1)
    b = bit2.acc(R)-bit2.acc(L-1)
    ans[I] = a*D+b

for i in range(Q):
    print(ans[i])
0