結果

問題 No.2549 Paint Eggs
ユーザー ntudantuda
提出日時 2023-12-02 10:02:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 112,556 KB
最終ジャッジ日時 2024-09-26 16:25:36
合計ジャッジ時間 7,357 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,348 KB
testcase_01 AC 44 ms
61,952 KB
testcase_02 AC 42 ms
60,056 KB
testcase_03 AC 38 ms
58,972 KB
testcase_04 AC 40 ms
59,904 KB
testcase_05 AC 39 ms
59,496 KB
testcase_06 AC 41 ms
60,704 KB
testcase_07 AC 41 ms
61,232 KB
testcase_08 AC 37 ms
53,004 KB
testcase_09 AC 40 ms
60,084 KB
testcase_10 AC 116 ms
107,880 KB
testcase_11 AC 103 ms
107,436 KB
testcase_12 AC 98 ms
106,884 KB
testcase_13 AC 114 ms
104,584 KB
testcase_14 AC 90 ms
98,612 KB
testcase_15 AC 48 ms
66,264 KB
testcase_16 AC 106 ms
106,496 KB
testcase_17 AC 85 ms
105,364 KB
testcase_18 AC 82 ms
103,100 KB
testcase_19 AC 91 ms
103,964 KB
testcase_20 AC 124 ms
112,556 KB
testcase_21 AC 126 ms
112,140 KB
testcase_22 AC 128 ms
111,888 KB
testcase_23 AC 128 ms
111,760 KB
testcase_24 AC 125 ms
112,292 KB
testcase_25 AC 125 ms
112,020 KB
testcase_26 AC 130 ms
112,040 KB
testcase_27 AC 132 ms
112,556 KB
testcase_28 AC 128 ms
112,036 KB
testcase_29 AC 125 ms
112,428 KB
testcase_30 AC 126 ms
112,040 KB
testcase_31 AC 131 ms
112,272 KB
testcase_32 AC 129 ms
112,296 KB
testcase_33 AC 127 ms
112,020 KB
testcase_34 AC 128 ms
112,280 KB
testcase_35 AC 132 ms
111,908 KB
testcase_36 AC 133 ms
112,468 KB
testcase_37 AC 131 ms
111,920 KB
testcase_38 AC 127 ms
112,020 KB
testcase_39 AC 126 ms
112,552 KB
testcase_40 AC 125 ms
112,532 KB
testcase_41 AC 126 ms
112,016 KB
testcase_42 AC 126 ms
111,776 KB
testcase_43 AC 136 ms
112,420 KB
testcase_44 AC 125 ms
112,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
C = [i-1 for i in 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]])
print(ans)

0