結果

問題 No.2549 Paint Eggs
ユーザー NullzNullz
提出日時 2023-11-25 14:05:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 214,516 KB
最終ジャッジ日時 2024-09-26 10:38:32
合計ジャッジ時間 13,368 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
63,488 KB
testcase_01 AC 46 ms
64,332 KB
testcase_02 AC 43 ms
62,180 KB
testcase_03 AC 44 ms
63,472 KB
testcase_04 AC 44 ms
62,508 KB
testcase_05 AC 44 ms
60,972 KB
testcase_06 AC 45 ms
62,828 KB
testcase_07 AC 48 ms
63,876 KB
testcase_08 AC 38 ms
55,064 KB
testcase_09 AC 46 ms
63,308 KB
testcase_10 AC 267 ms
170,940 KB
testcase_11 AC 255 ms
203,832 KB
testcase_12 AC 218 ms
146,052 KB
testcase_13 AC 248 ms
172,244 KB
testcase_14 AC 207 ms
180,844 KB
testcase_15 AC 65 ms
81,664 KB
testcase_16 AC 262 ms
168,148 KB
testcase_17 AC 167 ms
127,496 KB
testcase_18 AC 128 ms
106,600 KB
testcase_19 AC 205 ms
151,500 KB
testcase_20 AC 348 ms
214,068 KB
testcase_21 AC 341 ms
213,876 KB
testcase_22 AC 344 ms
213,748 KB
testcase_23 AC 344 ms
213,824 KB
testcase_24 AC 335 ms
213,372 KB
testcase_25 AC 356 ms
214,008 KB
testcase_26 AC 349 ms
214,264 KB
testcase_27 AC 357 ms
214,012 KB
testcase_28 AC 345 ms
213,616 KB
testcase_29 AC 342 ms
214,008 KB
testcase_30 AC 345 ms
213,700 KB
testcase_31 AC 344 ms
214,000 KB
testcase_32 AC 354 ms
214,196 KB
testcase_33 AC 355 ms
214,516 KB
testcase_34 AC 343 ms
214,136 KB
testcase_35 AC 343 ms
213,744 KB
testcase_36 AC 353 ms
213,876 KB
testcase_37 AC 354 ms
213,940 KB
testcase_38 AC 363 ms
214,072 KB
testcase_39 AC 359 ms
213,964 KB
testcase_40 AC 337 ms
213,316 KB
testcase_41 AC 344 ms
213,364 KB
testcase_42 AC 328 ms
213,452 KB
testcase_43 AC 334 ms
213,240 KB
testcase_44 AC 332 ms
213,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m, k = map(int, input().split())
c = [*map(int, input().split())]
a = [*map(int, input().split())]
b = [deque() for _ in range(m)]
ans = [k * a[i] for i in range(m)]
for i, v in enumerate(c):
    b[v - 1].append(i)
    if i >= k:
        if b[v - 1][0] <= i - k:
            b[v - 1].popleft()
    ans[v - 1] = min(ans[v - 1], (k - len(b[v - 1])) * a[v - 1])
print(min(ans))
0