結果

問題 No.2549 Paint Eggs
ユーザー titiatitia
提出日時 2023-11-29 01:48:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,968 KB
最終ジャッジ日時 2024-09-26 13:14:42
合計ジャッジ時間 18,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 371 ms
38,356 KB
testcase_11 AC 330 ms
35,564 KB
testcase_12 AC 330 ms
29,192 KB
testcase_13 AC 370 ms
36,952 KB
testcase_14 AC 240 ms
29,272 KB
testcase_15 AC 52 ms
12,544 KB
testcase_16 AC 350 ms
36,468 KB
testcase_17 AC 264 ms
26,692 KB
testcase_18 AC 208 ms
26,132 KB
testcase_19 AC 294 ms
28,668 KB
testcase_20 AC 520 ms
40,824 KB
testcase_21 AC 516 ms
40,712 KB
testcase_22 AC 546 ms
40,564 KB
testcase_23 AC 533 ms
40,836 KB
testcase_24 AC 551 ms
40,584 KB
testcase_25 AC 438 ms
40,828 KB
testcase_26 AC 427 ms
40,968 KB
testcase_27 AC 452 ms
40,580 KB
testcase_28 AC 535 ms
40,964 KB
testcase_29 AC 485 ms
40,840 KB
testcase_30 AC 546 ms
40,840 KB
testcase_31 AC 466 ms
40,676 KB
testcase_32 AC 506 ms
40,956 KB
testcase_33 AC 483 ms
40,832 KB
testcase_34 AC 461 ms
40,840 KB
testcase_35 AC 530 ms
40,692 KB
testcase_36 AC 511 ms
40,840 KB
testcase_37 AC 494 ms
40,836 KB
testcase_38 AC 491 ms
40,824 KB
testcase_39 AC 502 ms
40,836 KB
testcase_40 AC 552 ms
40,964 KB
testcase_41 AC 538 ms
40,700 KB
testcase_42 AC 548 ms
40,964 KB
testcase_43 AC 536 ms
40,584 KB
testcase_44 AC 522 ms
40,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N,M,K=map(int,input().split())
B=list(map(int,input().split()))
A=list(map(int,input().split()))

MAX=[0]*(M+1)

C=Counter()
for i in range(K):
    C[B[i]]+=1

for c in C:
    MAX[c]=C[c]

for i in range(K,N):
    C[B[i]]+=1
    C[B[i-K]]-=1

    MAX[B[i]]=C[B[i]]

ANS=1<<60

for i in range(1,M+1):
    ANS=min(ANS,(K-MAX[i])*A[i-1])

print(ANS)
0