結果
問題 | No.2304 Distinct Elements |
ユーザー | Shirotsume |
提出日時 | 2023-04-23 02:46:34 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,893 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 82,504 KB |
実行使用メモリ | 256,760 KB |
最終ジャッジ日時 | 2024-11-14 12:52:20 |
合計ジャッジ時間 | 112,157 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
59,520 KB |
testcase_01 | AC | 41 ms
61,996 KB |
testcase_02 | AC | 41 ms
61,216 KB |
testcase_03 | AC | 41 ms
62,864 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 240 ms
136,500 KB |
testcase_10 | AC | 243 ms
251,940 KB |
testcase_11 | AC | 240 ms
137,136 KB |
testcase_12 | AC | 239 ms
248,448 KB |
testcase_13 | AC | 241 ms
137,140 KB |
testcase_14 | AC | 312 ms
201,280 KB |
testcase_15 | AC | 139 ms
84,504 KB |
testcase_16 | AC | 155 ms
199,404 KB |
testcase_17 | AC | 45 ms
63,960 KB |
testcase_18 | AC | 46 ms
179,740 KB |
testcase_19 | AC | 43 ms
61,764 KB |
testcase_20 | AC | 44 ms
178,536 KB |
testcase_21 | AC | 43 ms
62,072 KB |
testcase_22 | AC | 43 ms
178,504 KB |
testcase_23 | AC | 43 ms
62,800 KB |
testcase_24 | AC | 200 ms
198,804 KB |
testcase_25 | AC | 136 ms
84,960 KB |
testcase_26 | AC | 217 ms
200,532 KB |
testcase_27 | AC | 147 ms
84,408 KB |
testcase_28 | AC | 161 ms
212,724 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 226 ms
249,652 KB |
testcase_33 | AC | 82 ms
86,588 KB |
testcase_34 | AC | 224 ms
256,760 KB |
testcase_35 | AC | 231 ms
132,808 KB |
testcase_36 | AC | 80 ms
202,228 KB |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | AC | 208 ms
237,264 KB |
testcase_45 | AC | 215 ms
110,588 KB |
testcase_46 | AC | 185 ms
239,352 KB |
testcase_47 | AC | 331 ms
86,852 KB |
testcase_48 | AC | 332 ms
219,184 KB |
testcase_49 | TLE | - |
testcase_50 | TLE | - |
testcase_51 | TLE | - |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
testcase_56 | TLE | - |
testcase_57 | TLE | - |
testcase_58 | TLE | - |
testcase_59 | TLE | - |
testcase_60 | AC | 42 ms
55,016 KB |
testcase_61 | AC | 42 ms
178,032 KB |
ソースコード
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 0: 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)