結果
問題 | No.865 24時間降水量 |
ユーザー | nadare |
提出日時 | 2019-08-16 22:21:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,068 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 34,528 KB |
最終ジャッジ日時 | 2024-09-22 17:54:42 |
合計ジャッジ時間 | 18,214 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,948 KB |
testcase_01 | AC | 32 ms
10,880 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 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
# -*- 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(24): X[i] = A[23]*1 s = A[23]*1 for i in range(24, 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])