結果

問題 No.2549 Paint Eggs
ユーザー 👑 rin204rin204
提出日時 2024-09-15 16:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 124,500 KB
最終ジャッジ日時 2024-09-15 16:01:56
合計ジャッジ時間 12,021 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,672 KB
testcase_01 AC 47 ms
61,056 KB
testcase_02 AC 46 ms
60,544 KB
testcase_03 AC 48 ms
61,212 KB
testcase_04 AC 48 ms
61,312 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 48 ms
61,824 KB
testcase_07 AC 76 ms
62,720 KB
testcase_08 AC 39 ms
53,120 KB
testcase_09 AC 48 ms
62,208 KB
testcase_10 AC 196 ms
117,444 KB
testcase_11 AC 177 ms
124,500 KB
testcase_12 AC 160 ms
105,856 KB
testcase_13 AC 180 ms
115,760 KB
testcase_14 AC 149 ms
105,140 KB
testcase_15 AC 79 ms
77,440 KB
testcase_16 AC 173 ms
111,656 KB
testcase_17 AC 151 ms
104,064 KB
testcase_18 AC 124 ms
102,180 KB
testcase_19 AC 167 ms
104,192 KB
testcase_20 AC 209 ms
122,148 KB
testcase_21 AC 241 ms
122,332 KB
testcase_22 AC 244 ms
122,588 KB
testcase_23 AC 217 ms
122,088 KB
testcase_24 AC 211 ms
122,148 KB
testcase_25 AC 206 ms
122,348 KB
testcase_26 AC 233 ms
121,764 KB
testcase_27 AC 234 ms
122,612 KB
testcase_28 AC 238 ms
122,276 KB
testcase_29 AC 240 ms
122,404 KB
testcase_30 AC 214 ms
122,272 KB
testcase_31 AC 216 ms
122,216 KB
testcase_32 AC 258 ms
122,616 KB
testcase_33 AC 238 ms
122,404 KB
testcase_34 AC 218 ms
122,404 KB
testcase_35 AC 210 ms
122,276 KB
testcase_36 AC 207 ms
122,096 KB
testcase_37 AC 254 ms
122,728 KB
testcase_38 AC 208 ms
122,092 KB
testcase_39 AC 210 ms
122,072 KB
testcase_40 AC 231 ms
122,732 KB
testcase_41 AC 218 ms
122,280 KB
testcase_42 AC 234 ms
122,276 KB
testcase_43 AC 210 ms
122,144 KB
testcase_44 AC 209 ms
122,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())
C = list(map(int, input().split()))
A = list(map(int, input().split()))
for i in range(n):
    C[i] -= 1

ans = min(A) * k
inds = [[] for _ in range(m)]
for i, c in enumerate(C):
    inds[c].append(i)

for i, row in enumerate(inds):
    ma = 0
    l = 0
    for r in range(len(row)):
        while row[r] - row[l] >= k:
            l += 1

        ma = max(ma, r - l + 1)

    ans = min(ans, A[i] * (k - ma))

print(ans)
0