結果

問題 No.2304 Distinct Elements
ユーザー ShirotsumeShirotsume
提出日時 2023-04-23 02:43:59
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,893 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 216,980 KB
最終ジャッジ日時 2024-11-14 12:52:44
合計ジャッジ時間 23,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,408 KB
testcase_01 AC 43 ms
61,688 KB
testcase_02 AC 44 ms
61,204 KB
testcase_03 AC 43 ms
55,484 KB
testcase_04 AC 367 ms
107,476 KB
testcase_05 AC 369 ms
108,088 KB
testcase_06 AC 366 ms
107,680 KB
testcase_07 AC 367 ms
107,900 KB
testcase_08 AC 364 ms
107,612 KB
testcase_09 AC 247 ms
129,268 KB
testcase_10 AC 246 ms
129,672 KB
testcase_11 AC 246 ms
130,060 KB
testcase_12 AC 248 ms
128,900 KB
testcase_13 AC 250 ms
130,300 KB
testcase_14 AC 70 ms
70,472 KB
testcase_15 AC 60 ms
66,120 KB
testcase_16 AC 59 ms
65,972 KB
testcase_17 AC 47 ms
55,704 KB
testcase_18 AC 49 ms
57,016 KB
testcase_19 AC 44 ms
55,504 KB
testcase_20 AC 45 ms
55,652 KB
testcase_21 AC 44 ms
55,964 KB
testcase_22 AC 49 ms
55,196 KB
testcase_23 AC 44 ms
54,524 KB
testcase_24 AC 47 ms
56,324 KB
testcase_25 AC 45 ms
56,240 KB
testcase_26 AC 50 ms
60,836 KB
testcase_27 AC 46 ms
55,840 KB
testcase_28 AC 48 ms
55,876 KB
testcase_29 AC 302 ms
101,840 KB
testcase_30 AC 150 ms
78,456 KB
testcase_31 AC 270 ms
96,472 KB
testcase_32 AC 231 ms
118,244 KB
testcase_33 AC 86 ms
79,640 KB
testcase_34 AC 231 ms
125,564 KB
testcase_35 AC 241 ms
125,972 KB
testcase_36 AC 83 ms
79,508 KB
testcase_37 AC 205 ms
84,228 KB
testcase_38 AC 379 ms
108,900 KB
testcase_39 AC 381 ms
107,992 KB
testcase_40 AC 286 ms
97,092 KB
testcase_41 AC 215 ms
84,968 KB
testcase_42 AC 344 ms
105,476 KB
testcase_43 AC 358 ms
110,564 KB
testcase_44 AC 218 ms
114,320 KB
testcase_45 AC 231 ms
101,908 KB
testcase_46 AC 197 ms
99,944 KB
testcase_47 AC 62 ms
68,248 KB
testcase_48 AC 63 ms
67,332 KB
testcase_49 AC 369 ms
109,104 KB
testcase_50 AC 370 ms
105,832 KB
testcase_51 AC 372 ms
106,204 KB
testcase_52 AC 644 ms
107,080 KB
testcase_53 AC 314 ms
117,996 KB
testcase_54 AC 558 ms
106,236 KB
testcase_55 AC 534 ms
105,860 KB
testcase_56 AC 507 ms
105,668 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 AC 370 ms
105,964 KB
testcase_60 AC 44 ms
55,164 KB
testcase_61 AC 44 ms
216,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import heapq
class MedianHeap():
    def __init__(self):
        self.top = []
        self.bottom = []
    def __len__(self):
        return len(self.top) + len(self.bottom)
    def add(self, x):
        heapq.heappush(self.top, x)
        while len(self.top) - 2 >= len(self.bottom):
            heapq.heappush(self.bottom, -heapq.heappop(self.top))
        while self.top and self.bottom and self.top[0] < -self.bottom[0]:
            x = heapq.heappop(self.top)
            y = heapq.heappop(self.bottom)
            heapq.heappush(self.top, -y)
            heapq.heappush(self.bottom, -x)
    def med(self):
        if len(self) % 2:
            return self.top[0]
        else:
            return self.top[0]
n = ii()
a = li()
a.sort()
a = [a[i] - i for i in range(n)]

stack = []
for V in a:
    M = MedianHeap()
    M.add(V)
    stack.append(M)
    while len(stack) >= 2:
        X = stack.pop()
        Y = stack.pop()
        m2 = X.med()
        m1 = Y.med()
        if m1 <= m2:
            stack.append(Y)
            stack.append(X)
            break
        else:
            if 1:
                for v in X.top:
                    Y.add(v)
                for v in X.bottom:
                    Y.add(-v)
                stack.append(Y)
            else:
                for v in Y.top:
                    X.add(v)
                for v in Y.bottom:
                    X.add(-v)
                stack.append(X)

P = [len(stack[i]) for i in range(len(stack))]
cnt = 0
b = [0] * n
for i, v in enumerate(P):
    med = stack[i].med()
    for x in range(v):
        b[cnt] = med
        cnt += 1


ans = sum([abs(a[i] - b[i]) for i in range(n)])
print(ans)


0