結果

問題 No.1077 Noelちゃんと星々4
ユーザー convexineqconvexineq
提出日時 2021-07-19 02:58:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,311 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 68,180 KB
最終ジャッジ日時 2024-07-16 06:43:58
合計ジャッジ時間 2,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,960 KB
testcase_01 AC 38 ms
53,128 KB
testcase_02 AC 55 ms
63,820 KB
testcase_03 AC 56 ms
65,760 KB
testcase_04 AC 44 ms
60,428 KB
testcase_05 AC 39 ms
53,420 KB
testcase_06 AC 43 ms
60,364 KB
testcase_07 AC 46 ms
60,924 KB
testcase_08 AC 43 ms
59,616 KB
testcase_09 AC 40 ms
54,536 KB
testcase_10 AC 54 ms
66,620 KB
testcase_11 AC 49 ms
63,640 KB
testcase_12 AC 48 ms
61,972 KB
testcase_13 AC 40 ms
54,332 KB
testcase_14 AC 58 ms
66,952 KB
testcase_15 AC 49 ms
62,516 KB
testcase_16 AC 45 ms
60,128 KB
testcase_17 AC 51 ms
63,700 KB
testcase_18 AC 56 ms
65,888 KB
testcase_19 AC 40 ms
53,944 KB
testcase_20 AC 42 ms
54,608 KB
testcase_21 AC 58 ms
68,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
class slope_trick():
    def __init__(self):
        self.L = [] #mapheap
        self.R = [] #minheap
        self.shiftL = self.shiftR = 0
        self.min_f = 0
    
    # 関数に max(0,x-a) を加算
    def addR(self,a):
        a -= self.shiftL
        if self.L and -self.L[0] > a: self.min_f -= self.L[0] + a
        v = heappushpop(self.L,-a)
        heappush(self.R,-v)

    # 関数に max(-,a-x) を加算
    def addL(self,a):
        a -= self.shiftR
        if self.R and a > self.R[0]: self.min_f += a - self.R[0]
        v = heappushpop(self.R,a)
        heappush(self.L,-v)

    # 関数に定数 a を加算
    def addconst(self,a):
        self.min_f += a
    
    # 関数の累積 min をとる
    def reducemin(self):
        self.R = []

    # 関数を右に a 平行移動する、つまり f(x) \mapsto f(x-a) とする
    def shift(self,a):
        self.shiftL += a
        self.shiftR += a
        
    # 関数の最小値を求める
    def getmin(self):
        return self.min_f

#######################################################################
import sys
readline = sys.stdin.readline

n = int(readline())
*a, = map(int,readline().split())

st = slope_trick()
for ai in a:
    st.reducemin()
    st.addL(ai)
    st.addR(ai)
print(st.getmin())

0