結果
問題 | No.631 Noelちゃんと電車旅行 |
ユーザー | wajima_wataru |
提出日時 | 2018-01-07 14:36:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,276 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 74,280 KB |
最終ジャッジ日時 | 2024-06-02 12:25:56 |
合計ジャッジ時間 | 7,012 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
size = 1 << 20 class StarrySkyTree: def __init__(self): self.seg_max = [0] * (2 * size - 1) self.seg_add = [0] * (2 * size - 1) def add(self, a, b, x, k=0, l=0, r=size): if not r: r = size if r <= a or b <= l: return if a <= l and r <= b: self.seg_add[k] += x return self.add(a, b, x, k * 2 + 1, l, (l + r) / 2) self.add(a, b, x, k * 2 + 2, (l + r) / 2, r) self.seg_max[k] = max(self.seg_max[k * 2 + 1] + self.seg_add[k * 2 + 1], self.seg_max[k * 2 + 2] + self.seg_add[k * 2 + 2]) def get_max(self, a, b, k=0, l=0, r=size): if r <= a or b <= l: return 0 if a <= l and r <= b: return self.seg_max[k] + self.seg_add[k] left = self.get_max(a, b, k * 2 + 1, l, (l + r) / 2) right = self.get_max(a, b, k * 2 + 2, (l + r) / 2, r) return max(left, right) + self.seg_add[k] N = int(input()) sst = StarrySkyTree() for i, t in enumerate(input().split()): sst.add(i, i + 1, int(t) - 3 * i) M = int(input()) LRD = [tuple(map(int, input().split())) for _ in range(M)] for i in range(M): sst.add(LRD[i][0] - 1, LRD[i][1], LRD[i][2]) print(max(0, sst.get_max(0, N - 1)) + 3 * (N - 1))