結果
問題 | No.865 24時間降水量 |
ユーザー | nadare |
提出日時 | 2019-08-16 22:16:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,064 bytes |
コンパイル時間 | 393 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 115,364 KB |
最終ジャッジ日時 | 2024-09-22 17:34:24 |
合計ジャッジ時間 | 11,181 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
60,832 KB |
testcase_01 | AC | 45 ms
61,124 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 38 ms
53,556 KB |
testcase_19 | AC | 48 ms
62,640 KB |
testcase_20 | AC | 43 ms
59,848 KB |
ソースコード
# -*- coding: utf-8 -*- from math import sqrt def inpl(): return list(map(int, input().split())) class SegmentTree: def __init__(self, N, init_node=None): self.size = 2**int.bit_length(N) self.node = [0]*(2*self.size-1) if not init_node is None: for i in range(N): self.node[i+self.size-1] = init_node[i] for i in range(self.size-2, -1, -1): self.node[i] = max(self.node[2*i+1], self.node[2*i+2]) def add(self, x, val): x += self.size - 1 self.node[x] += val while x: x = (x-1)//2 self.node[x] = max(self.node[2*x+1], self.node[2*x+2]) N = int(input()) A = [0] * 23 + inpl() + [0]*23 s = sum(A[:24]) X = [0]*(N + 46) for i in range(23): X[i] = A[0] s = A[0]*1 for i in range(23, N+46): s += A[i] - A[i-24] X[i] = s seg = SegmentTree(len(X), X) for _ in range(int(input())): t, v = inpl() t += 22 d = v - A[t] A[t] = v for i in range(t-23, t+24): seg.add(i, d) print(seg.node[0])