結果

問題 No.2304 Distinct Elements
ユーザー titiatitia
提出日時 2023-05-16 07:55:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 761 ms / 3,000 ms
コード長 380 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,708 KB
最終ジャッジ日時 2024-12-14 09:57:19
合計ジャッジ時間 24,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 543 ms
26,440 KB
testcase_05 AC 543 ms
26,416 KB
testcase_06 AC 541 ms
26,408 KB
testcase_07 AC 547 ms
26,316 KB
testcase_08 AC 532 ms
26,272 KB
testcase_09 AC 751 ms
32,552 KB
testcase_10 AC 748 ms
32,548 KB
testcase_11 AC 760 ms
32,552 KB
testcase_12 AC 761 ms
32,544 KB
testcase_13 AC 757 ms
32,552 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 32 ms
10,624 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 408 ms
26,940 KB
testcase_30 AC 58 ms
12,032 KB
testcase_31 AC 339 ms
24,272 KB
testcase_32 AC 583 ms
28,300 KB
testcase_33 AC 69 ms
12,032 KB
testcase_34 AC 591 ms
28,552 KB
testcase_35 AC 676 ms
30,392 KB
testcase_36 AC 62 ms
12,032 KB
testcase_37 AC 188 ms
16,076 KB
testcase_38 AC 591 ms
28,424 KB
testcase_39 AC 599 ms
28,576 KB
testcase_40 AC 351 ms
20,972 KB
testcase_41 AC 197 ms
16,124 KB
testcase_42 AC 505 ms
26,716 KB
testcase_43 AC 531 ms
32,708 KB
testcase_44 AC 529 ms
26,560 KB
testcase_45 AC 439 ms
22,612 KB
testcase_46 AC 340 ms
19,068 KB
testcase_47 AC 32 ms
10,752 KB
testcase_48 AC 33 ms
10,752 KB
testcase_49 AC 538 ms
29,440 KB
testcase_50 AC 538 ms
29,444 KB
testcase_51 AC 544 ms
29,568 KB
testcase_52 AC 520 ms
27,112 KB
testcase_53 AC 464 ms
29,572 KB
testcase_54 AC 516 ms
26,384 KB
testcase_55 AC 497 ms
26,220 KB
testcase_56 AC 511 ms
26,772 KB
testcase_57 AC 587 ms
30,672 KB
testcase_58 AC 555 ms
30,732 KB
testcase_59 AC 512 ms
26,404 KB
testcase_60 AC 32 ms
10,624 KB
testcase_61 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N=int(input())
A=list(map(int,input().split()))

A.sort()
for i in range(N):
    A[i]-=i

L=[10**18]
R=[10**18]

MIN=0

for a in A:
    heappush(R,a)
    x=heappop(R)
    MIN+=abs(x-a)
    heappush(L,-x)

    heappush(L,-a)
    x=-heappop(L)
    heappush(R,x)
    MIN+=abs(x-a)

    R=[10**18]

print(MIN)
0