結果

問題 No.2304 Distinct Elements
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 19:14:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 3,000 ms
コード長 569 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 112,784 KB
最終ジャッジ日時 2024-09-13 19:14:49
合計ジャッジ時間 19,394 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 42 ms
52,608 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 503 ms
110,208 KB
testcase_05 AC 488 ms
111,104 KB
testcase_06 AC 522 ms
110,464 KB
testcase_07 AC 498 ms
110,492 KB
testcase_08 AC 497 ms
110,592 KB
testcase_09 AC 312 ms
110,388 KB
testcase_10 AC 286 ms
109,888 KB
testcase_11 AC 292 ms
109,124 KB
testcase_12 AC 310 ms
109,372 KB
testcase_13 AC 333 ms
110,008 KB
testcase_14 AC 57 ms
62,336 KB
testcase_15 AC 59 ms
61,952 KB
testcase_16 AC 54 ms
60,288 KB
testcase_17 AC 48 ms
58,624 KB
testcase_18 AC 48 ms
58,624 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 40 ms
52,224 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 41 ms
52,480 KB
testcase_23 AC 42 ms
52,480 KB
testcase_24 AC 45 ms
52,864 KB
testcase_25 AC 44 ms
52,992 KB
testcase_26 AC 49 ms
58,496 KB
testcase_27 AC 44 ms
52,480 KB
testcase_28 AC 45 ms
52,864 KB
testcase_29 AC 381 ms
103,936 KB
testcase_30 AC 179 ms
78,036 KB
testcase_31 AC 339 ms
98,048 KB
testcase_32 AC 261 ms
105,728 KB
testcase_33 AC 89 ms
77,312 KB
testcase_34 AC 257 ms
105,600 KB
testcase_35 AC 278 ms
106,880 KB
testcase_36 AC 90 ms
76,928 KB
testcase_37 AC 290 ms
84,480 KB
testcase_38 AC 474 ms
111,360 KB
testcase_39 AC 482 ms
110,848 KB
testcase_40 AC 403 ms
98,432 KB
testcase_41 AC 297 ms
85,696 KB
testcase_42 AC 428 ms
108,544 KB
testcase_43 AC 468 ms
112,784 KB
testcase_44 AC 231 ms
101,904 KB
testcase_45 AC 258 ms
98,176 KB
testcase_46 AC 233 ms
91,776 KB
testcase_47 AC 59 ms
62,080 KB
testcase_48 AC 59 ms
62,464 KB
testcase_49 AC 559 ms
111,872 KB
testcase_50 AC 498 ms
112,768 KB
testcase_51 AC 512 ms
112,256 KB
testcase_52 AC 448 ms
109,952 KB
testcase_53 AC 324 ms
111,488 KB
testcase_54 AC 504 ms
108,800 KB
testcase_55 AC 475 ms
108,800 KB
testcase_56 AC 503 ms
108,672 KB
testcase_57 AC 569 ms
111,104 KB
testcase_58 AC 494 ms
110,464 KB
testcase_59 AC 561 ms
109,056 KB
testcase_60 AC 42 ms
52,096 KB
testcase_61 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
X=10**20

from heapq import heappush,heappop
sm=0
sl=[X]*n
sr=[-X]*n
sla=0
sra=0

def addl(p):
  global sm,sl,sr,sla,sra
  if p<=sr[0]+sra:
    heappush(sl,-(p-sla))
  else:
    sm+=p-sr[0]-sra
    heappush(sl,-(heappop(sr)+sra-sla))
    heappush(sr,p-sra)
  return

def addr(p):
  global sm,sl,sr,sla,sra
  if -sl[0]+sla<=p:
    heappush(sr,p-sra)
  else:
    sm+=-sl[0]+sla-p
    heappush(sr,-heappop(sl)+sla-sra)
    heappush(sl,-(p-sla))
  return

a=list(map(int,input().split()))
a.sort()
for v in a:
  sr=[X]
  sla+=1
  addl(v)
  addr(v)

print(sm)
0