結果

問題 No.865 24時間降水量
ユーザー rlangevinrlangevin
提出日時 2023-11-07 20:26:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,224 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-09-25 23:26:19
合計ジャッジ時間 10,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,572 KB
testcase_01 AC 46 ms
57,088 KB
testcase_02 AC 46 ms
57,984 KB
testcase_03 AC 45 ms
57,984 KB
testcase_04 AC 48 ms
57,088 KB
testcase_05 AC 108 ms
77,016 KB
testcase_06 AC 109 ms
76,644 KB
testcase_07 AC 107 ms
76,928 KB
testcase_08 AC 108 ms
76,416 KB
testcase_09 AC 109 ms
76,544 KB
testcase_10 AC 218 ms
77,676 KB
testcase_11 AC 209 ms
77,352 KB
testcase_12 AC 212 ms
77,696 KB
testcase_13 AC 211 ms
77,308 KB
testcase_14 AC 212 ms
77,700 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 41 ms
52,480 KB
testcase_19 AC 42 ms
52,352 KB
testcase_20 AC 45 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class SegmentTree:
    def __init__(self, size, f=min, default=10 ** 18):
        self.size = 2**(size-1).bit_length() 
        self.default = default
        self.dat = [default]*(self.size*2) 
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] = x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) 
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res


N = int(input())
A = list(map(int, input().split()))
Seg = SegmentTree(N, max, 0)
for i in range(N - 23):
    Seg.update(i, sum(A[i:i+24]))
    
Q = int(input())
for _ in range(Q):
    T, V = map(int, input().split())
    T -= 1
    A[T] = V
    for i in range(max(0, T - 23), min(N - 23, T + 1)):
        Seg.update(i, sum(A[i:i+24]))
    print(Seg.query(0, N))
0