結果

問題 No.2078 魔抜けなパープル
ユーザー 👑 rin204rin204
提出日時 2022-09-26 19:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 139,796 KB
最終ジャッジ日時 2024-06-02 00:15:17
合計ジャッジ時間 2,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
79,536 KB
testcase_01 AC 312 ms
116,840 KB
testcase_02 AC 258 ms
103,624 KB
testcase_03 AC 292 ms
110,236 KB
testcase_04 AC 249 ms
100,996 KB
testcase_05 AC 246 ms
101,084 KB
testcase_06 AC 458 ms
139,796 KB
testcase_07 AC 176 ms
101,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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 solve(c, n):    
    n += 1
    H = [i for i in range(n)]
    dp = [0] * n
    cht = CHT()
    cht.add_line(-2 * H[0], H[0] ** 2)
    for i, h in enumerate(H[1:], 1):
        dp[i] = h ** 2 + c + cht.get(h)
        cht.add_line(-2 * h, dp[i] + h ** 2)
    return dp[-1]

for _ in range(int(input())):
    print(solve(*map(int, input().split())))
0