結果

問題 No.2304 Distinct Elements
ユーザー 👑 rin204rin204
提出日時 2024-03-16 15:41:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,340 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 118,812 KB
最終ジャッジ日時 2024-09-30 04:03:04
合計ジャッジ時間 13,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,688 KB
testcase_01 AC 34 ms
53,576 KB
testcase_02 AC 35 ms
53,060 KB
testcase_03 AC 41 ms
53,440 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 368 ms
116,992 KB
testcase_10 AC 359 ms
116,744 KB
testcase_11 AC 342 ms
118,420 KB
testcase_12 AC 346 ms
118,428 KB
testcase_13 AC 348 ms
118,812 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
62,456 KB
testcase_18 AC 45 ms
64,112 KB
testcase_19 AC 34 ms
53,016 KB
testcase_20 AC 34 ms
53,448 KB
testcase_21 AC 34 ms
53,736 KB
testcase_22 AC 34 ms
54,540 KB
testcase_23 AC 34 ms
53,204 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 239 ms
100,884 KB
testcase_30 AC 103 ms
77,108 KB
testcase_31 AC 207 ms
95,712 KB
testcase_32 AC 298 ms
102,640 KB
testcase_33 AC 109 ms
77,856 KB
testcase_34 AC 299 ms
102,108 KB
testcase_35 AC 319 ms
105,252 KB
testcase_36 AC 106 ms
77,540 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 288 ms
116,680 KB
testcase_44 AC 276 ms
99,292 KB
testcase_45 AC 249 ms
94,908 KB
testcase_46 AC 209 ms
89,964 KB
testcase_47 AC 54 ms
67,704 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 315 ms
108,540 KB
testcase_51 AC 299 ms
107,896 KB
testcase_52 WA -
testcase_53 AC 293 ms
107,656 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 348 ms
107,280 KB
testcase_58 AC 342 ms
107,844 KB
testcase_59 WA -
testcase_60 AC 36 ms
53,576 KB
testcase_61 AC 38 ms
53,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *


class SlopeTrick:
    def __init__(self):
        self.minf = 0
        self.inf = 1 << 60
        self.R = [self.inf]
        self.L = [self.inf]
        self.addr = 0
        self.addl = 0

    @property
    def min(self):
        return self.minf

    def get_min(self):
        return (self.minf, -self.L[0] + self.addl, self.R[0] + self.addr)

    # add f(x) = a
    def add(self, a):
        self.minf += a

    # add f(x) = max(0, x - a)
    def add_x_a(self, a):
        self.minf += max(0, -self.L[0] + self.addl - a)
        heappush(self.L, self.addl - a)
        heappush(self.R, -heappop(self.L) + self.addl - self.addr)

    # add f(x) = max(0, a - x)
    def add_a_x(self, a):
        self.minf += max(0, a - self.R[0] - self.addr)
        heappush(self.R, a - self.addr)
        heappush(self.L, -heappop(self.R) - self.addr + self.addl)

    # add f(x) = abs(x - a)
    def add_abs(self, a):
        self.add_a_x(a)
        self.add_x_a(a)

    def add_l(self, x):
        assert x <= 0
        self.addl += x

    def add_r(self, x):
        assert x >= 0
        self.addr += x


n = int(input())
A = list(map(int, input().split()))
A.sort()
for i in range(n):
    A[i] -= i

st = SlopeTrick()
for a in A:
    st.add_abs(a)
    while len(st.R) > 1:
        st.add_a_x(-heappop(st.R))

print(st.min)
0