結果

問題 No.2549 Paint Eggs
ユーザー sepa38sepa38
提出日時 2023-11-19 21:32:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 147,552 KB
最終ジャッジ日時 2024-09-26 06:25:04
合計ジャッジ時間 16,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
62,976 KB
testcase_01 WA -
testcase_02 AC 68 ms
64,000 KB
testcase_03 AC 67 ms
62,976 KB
testcase_04 AC 65 ms
62,080 KB
testcase_05 WA -
testcase_06 AC 79 ms
67,328 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 248 ms
110,540 KB
testcase_13 AC 360 ms
123,120 KB
testcase_14 AC 233 ms
120,392 KB
testcase_15 WA -
testcase_16 AC 308 ms
120,468 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 418 ms
145,380 KB
testcase_21 WA -
testcase_22 AC 331 ms
145,632 KB
testcase_23 WA -
testcase_24 AC 316 ms
145,504 KB
testcase_25 AC 367 ms
145,260 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 407 ms
144,884 KB
testcase_30 AC 325 ms
145,376 KB
testcase_31 AC 406 ms
145,636 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 379 ms
145,128 KB
testcase_35 AC 311 ms
145,384 KB
testcase_36 AC 382 ms
145,632 KB
testcase_37 WA -
testcase_38 AC 392 ms
145,256 KB
testcase_39 AC 403 ms
145,252 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 318 ms
145,008 KB
testcase_44 AC 316 ms
145,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n, m, k = map(int, input().split())
c = list(map(lambda x: int(x)-1, input().split()))
a = list(map(int, input().split()))
d = dict()
for i in range(m):
  d[i] = a[i] * k
for i in range(k):
  d[c[i]] -= a[c[i]]
ans = min(d.values())
# print(d)
h = []
for i in d.keys():
  heapq.heappush(h, m*d[i]+i)
for i in range(n-k):
  while h:
    cost, idx = divmod(heapq.heappop(h), m)
    if d[idx] == cost:
      ans = min(ans, cost)
      heapq.heappush(h, m*cost+idx)
      break
print(ans)
0