結果

問題 No.2549 Paint Eggs
ユーザー ntudantuda
提出日時 2023-12-02 09:58:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 112,888 KB
最終ジャッジ日時 2024-09-26 16:25:27
合計ジャッジ時間 10,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
59,008 KB
testcase_01 AC 52 ms
59,648 KB
testcase_02 AC 47 ms
59,520 KB
testcase_03 AC 46 ms
58,496 KB
testcase_04 WA -
testcase_05 AC 47 ms
58,496 KB
testcase_06 AC 49 ms
60,032 KB
testcase_07 AC 49 ms
59,264 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 48 ms
59,136 KB
testcase_10 AC 134 ms
106,112 KB
testcase_11 AC 123 ms
106,972 KB
testcase_12 AC 115 ms
106,112 KB
testcase_13 AC 136 ms
105,960 KB
testcase_14 WA -
testcase_15 AC 59 ms
65,024 KB
testcase_16 WA -
testcase_17 AC 110 ms
104,176 KB
testcase_18 AC 104 ms
102,272 KB
testcase_19 AC 119 ms
103,984 KB
testcase_20 AC 158 ms
112,120 KB
testcase_21 AC 159 ms
112,172 KB
testcase_22 WA -
testcase_23 AC 149 ms
112,040 KB
testcase_24 AC 149 ms
112,424 KB
testcase_25 WA -
testcase_26 AC 157 ms
111,868 KB
testcase_27 AC 159 ms
112,048 KB
testcase_28 AC 160 ms
112,044 KB
testcase_29 WA -
testcase_30 AC 161 ms
112,160 KB
testcase_31 AC 159 ms
112,164 KB
testcase_32 AC 152 ms
112,168 KB
testcase_33 AC 150 ms
112,548 KB
testcase_34 AC 149 ms
112,500 KB
testcase_35 AC 151 ms
112,044 KB
testcase_36 AC 155 ms
112,240 KB
testcase_37 AC 152 ms
112,100 KB
testcase_38 WA -
testcase_39 AC 159 ms
112,220 KB
testcase_40 AC 159 ms
112,108 KB
testcase_41 AC 158 ms
111,824 KB
testcase_42 AC 159 ms
112,100 KB
testcase_43 AC 155 ms
111,788 KB
testcase_44 AC 150 ms
111,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
C = list(map(int, input().split()))
A = list(map(int, input().split()))
X = [0] * (M + 1)  # X[j]:=区間の長さKの中にある色jの数
for i in range(K):
    X[C[i]] += 1
ans = 10 ** 15
for i in range(M):
    ans = min(ans, (K - X[i]) * A[i])
for i in range(K,N):
    X[C[i-K]] -= 1
    X[C[i]] += 1
    ans = min(ans, (K - X[C[i]]) * A[C[i]-1])
print(ans)

0