結果
問題 | No.913 木の燃やし方 |
ユーザー | roaris |
提出日時 | 2023-03-16 06:04:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,620 bytes |
コンパイル時間 | 517 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 121,624 KB |
最終ジャッジ日時 | 2024-09-18 09:13:43 |
合計ジャッジ時間 | 25,756 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
54,860 KB |
testcase_01 | AC | 38 ms
55,060 KB |
testcase_02 | AC | 37 ms
53,916 KB |
testcase_03 | AC | 179 ms
78,968 KB |
testcase_04 | AC | 179 ms
78,872 KB |
testcase_05 | WA | - |
testcase_06 | AC | 168 ms
78,120 KB |
testcase_07 | AC | 132 ms
77,368 KB |
testcase_08 | AC | 814 ms
116,604 KB |
testcase_09 | AC | 755 ms
112,076 KB |
testcase_10 | AC | 753 ms
112,184 KB |
testcase_11 | AC | 784 ms
114,544 KB |
testcase_12 | AC | 803 ms
117,204 KB |
testcase_13 | AC | 706 ms
116,080 KB |
testcase_14 | AC | 634 ms
112,124 KB |
testcase_15 | AC | 634 ms
112,728 KB |
testcase_16 | AC | 715 ms
115,984 KB |
testcase_17 | AC | 712 ms
112,552 KB |
testcase_18 | AC | 704 ms
112,308 KB |
testcase_19 | AC | 518 ms
117,904 KB |
testcase_20 | AC | 684 ms
115,640 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 519 ms
118,528 KB |
testcase_26 | AC | 682 ms
118,344 KB |
testcase_27 | AC | 489 ms
121,624 KB |
testcase_28 | AC | 803 ms
120,320 KB |
testcase_29 | AC | 859 ms
119,552 KB |
testcase_30 | WA | - |
testcase_31 | AC | 573 ms
118,036 KB |
testcase_32 | AC | 565 ms
118,268 KB |
testcase_33 | AC | 581 ms
120,196 KB |
testcase_34 | AC | 737 ms
105,600 KB |
testcase_35 | AC | 774 ms
104,448 KB |
testcase_36 | AC | 789 ms
119,680 KB |
ソースコード
import sys input = sys.stdin.readline from collections import * class CHT: def __init__(self): self.deq = deque() def check(self, f1, f2, f3): return (f2[0] - f1[0]) * (f3[1] - f2[1]) >= (f2[1] - f1[1]) * (f3[0] - f2[0]) def f(self, f1, x): return f1[0]*x + f1[1] # add f_i(x) = a*x + b def add_line(self, a, b): f1 = (a, b) while len(self.deq) >= 2 and self.check(self.deq[-2], self.deq[-1], f1): self.deq.pop() self.deq.append(f1) # min f_i(x) def get(self, x): while len(self.deq) >= 2 and self.f(self.deq[0], x) >= self.f(self.deq[1], x): self.deq.popleft() return self.f(self.deq[0], x) def dfs(l, r): # [l, r) global ans if l>=r: return m = (l+r)//2 dfs(l, m) dfs(m+1, r) # [l, m) if l<m: cht = CHT() for i in range(m+1, r+1): cht.add_line(-2*i, i*i+acc[i]) res = 10**19 for i in range(l, m): res = min(res, cht.get(i)+i*i-acc[i]) ans[i] = min(ans[i], res) # [m, r) if m<r: cht = CHT() for i in range(l, m+1): cht.add_line(-2*i, i*i-acc[i]) res = 10**19 for i in range(r, m, -1): res = min(res, cht.get(i)+i*i+acc[i]) ans[i-1] = min(ans[i-1], res) N = int(input()) A = list(map(int, input().split())) acc = [0] for Ai in A: acc.append(acc[-1]+Ai) ans = [10**19]*N dfs(0, N) for i in range(N): print(ans[i])