結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,752 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 37 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 564 ms
26,448 KB
testcase_05 AC 560 ms
26,412 KB
testcase_06 AC 545 ms
26,404 KB
testcase_07 AC 549 ms
26,320 KB
testcase_08 AC 549 ms
26,272 KB
testcase_09 AC 774 ms
32,676 KB
testcase_10 AC 765 ms
32,548 KB
testcase_11 AC 782 ms
32,676 KB
testcase_12 AC 795 ms
32,684 KB
testcase_13 AC 796 ms
32,676 KB
testcase_14 AC 34 ms
10,752 KB
testcase_15 AC 34 ms
10,752 KB
testcase_16 AC 33 ms
10,752 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 34 ms
10,624 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 33 ms
10,624 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 33 ms
10,752 KB
testcase_24 AC 34 ms
10,752 KB
testcase_25 AC 33 ms
10,752 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 AC 33 ms
10,624 KB
testcase_28 AC 33 ms
10,752 KB
testcase_29 AC 404 ms
27,068 KB
testcase_30 AC 60 ms
12,032 KB
testcase_31 AC 346 ms
24,404 KB
testcase_32 AC 605 ms
28,168 KB
testcase_33 AC 71 ms
12,160 KB
testcase_34 AC 616 ms
28,620 KB
testcase_35 AC 685 ms
30,520 KB
testcase_36 AC 64 ms
11,904 KB
testcase_37 AC 199 ms
16,204 KB
testcase_38 AC 596 ms
28,300 KB
testcase_39 AC 605 ms
28,452 KB
testcase_40 AC 350 ms
20,972 KB
testcase_41 AC 201 ms
16,124 KB
testcase_42 AC 514 ms
26,844 KB
testcase_43 AC 544 ms
32,580 KB
testcase_44 AC 548 ms
26,684 KB
testcase_45 AC 452 ms
22,488 KB
testcase_46 AC 351 ms
19,200 KB
testcase_47 AC 34 ms
10,624 KB
testcase_48 AC 33 ms
10,624 KB
testcase_49 AC 551 ms
29,436 KB
testcase_50 AC 554 ms
29,568 KB
testcase_51 AC 530 ms
29,572 KB
testcase_52 AC 551 ms
27,244 KB
testcase_53 AC 469 ms
29,440 KB
testcase_54 AC 506 ms
26,384 KB
testcase_55 AC 513 ms
26,348 KB
testcase_56 AC 529 ms
26,768 KB
testcase_57 AC 598 ms
30,676 KB
testcase_58 AC 598 ms
30,752 KB
testcase_59 AC 515 ms
26,408 KB
testcase_60 AC 32 ms
10,752 KB
testcase_61 AC 32 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