結果

問題 No.2549 Paint Eggs
ユーザー sepa38sepa38
提出日時 2023-11-19 21:41:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,626 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,184 KB
最終ジャッジ日時 2024-09-26 06:25:40
合計ジャッジ時間 31,671 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
63,360 KB
testcase_01 AC 79 ms
70,144 KB
testcase_02 AC 62 ms
64,128 KB
testcase_03 AC 70 ms
65,280 KB
testcase_04 AC 60 ms
62,848 KB
testcase_05 AC 73 ms
67,328 KB
testcase_06 AC 97 ms
77,312 KB
testcase_07 AC 76 ms
69,248 KB
testcase_08 AC 56 ms
60,416 KB
testcase_09 AC 83 ms
70,912 KB
testcase_10 AC 877 ms
129,892 KB
testcase_11 AC 454 ms
147,660 KB
testcase_12 AC 372 ms
111,092 KB
testcase_13 AC 889 ms
122,976 KB
testcase_14 AC 317 ms
120,336 KB
testcase_15 AC 236 ms
80,336 KB
testcase_16 AC 609 ms
117,752 KB
testcase_17 AC 384 ms
103,168 KB
testcase_18 AC 300 ms
100,352 KB
testcase_19 AC 387 ms
113,316 KB
testcase_20 AC 1,169 ms
145,492 KB
testcase_21 AC 1,626 ms
156,184 KB
testcase_22 AC 666 ms
145,624 KB
testcase_23 AC 1,196 ms
146,144 KB
testcase_24 AC 609 ms
145,372 KB
testcase_25 AC 582 ms
145,248 KB
testcase_26 AC 634 ms
145,120 KB
testcase_27 AC 999 ms
145,096 KB
testcase_28 AC 655 ms
144,992 KB
testcase_29 AC 1,199 ms
145,244 KB
testcase_30 AC 577 ms
145,632 KB
testcase_31 AC 1,062 ms
145,364 KB
testcase_32 AC 1,234 ms
149,732 KB
testcase_33 AC 1,273 ms
145,244 KB
testcase_34 AC 980 ms
145,108 KB
testcase_35 AC 590 ms
145,244 KB
testcase_36 AC 1,101 ms
145,624 KB
testcase_37 AC 1,289 ms
147,648 KB
testcase_38 AC 955 ms
145,244 KB
testcase_39 AC 1,094 ms
145,616 KB
testcase_40 AC 689 ms
145,372 KB
testcase_41 AC 626 ms
145,240 KB
testcase_42 AC 658 ms
145,376 KB
testcase_43 AC 600 ms
145,372 KB
testcase_44 AC 587 ms
145,244 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):
  d[c[i]] += a[c[i]]
  d[c[i+k]] -= a[c[i+k]]
  heapq.heappush(h, m*d[c[i]]+c[i])
  heapq.heappush(h, m*d[c[i+k]]+c[i+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