結果

問題 No.865 24時間降水量
ユーザー stngstng
提出日時 2022-07-24 21:25:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,391 ms / 2,000 ms
コード長 923 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 86,748 KB
実行使用メモリ 111,216 KB
最終ジャッジ日時 2023-09-20 21:53:51
合計ジャッジ時間 8,477 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,400 KB
testcase_01 AC 73 ms
71,272 KB
testcase_02 AC 73 ms
71,372 KB
testcase_03 AC 73 ms
71,204 KB
testcase_04 AC 72 ms
70,984 KB
testcase_05 AC 119 ms
77,388 KB
testcase_06 AC 114 ms
77,632 KB
testcase_07 AC 114 ms
77,508 KB
testcase_08 AC 115 ms
77,536 KB
testcase_09 AC 115 ms
77,568 KB
testcase_10 AC 180 ms
79,508 KB
testcase_11 AC 183 ms
79,532 KB
testcase_12 AC 181 ms
79,540 KB
testcase_13 AC 185 ms
79,728 KB
testcase_14 AC 187 ms
79,376 KB
testcase_15 AC 1,280 ms
110,940 KB
testcase_16 AC 1,391 ms
110,876 KB
testcase_17 AC 1,342 ms
111,216 KB
testcase_18 AC 70 ms
70,972 KB
testcase_19 AC 71 ms
71,500 KB
testcase_20 AC 71 ms
70,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]
q = int(input())
tv = [[int(i) for i in input().split()] for j in range(q)]

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

ki = Bit(n+1)
for i in range(n):
    ki.add(i+1,a[i])

ans = 0
for i in range(n-23):
    #print(i,i+1+24)
    tmp = ki.sum(i+24)-ki.sum(i)
    #print(tmp)
    ans = max(ans,tmp)
#exit()
for i in range(q):
    t,v = tv[i]
    ki.add(t,v - (ki.sum(t)-ki.sum(t-1)))
    for j in range(24):
        if t-24+j < 0:
            continue
        if t+j > n:
            continue
        tmp = ki.sum(t+j)-ki.sum(t-24+j)
        ans = max(ans,tmp)
    print(ans)
0