結果

問題 No.2549 Paint Eggs
ユーザー YwestbuilderkYwestbuilderk
提出日時 2024-01-27 14:29:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 586 bytes
コンパイル時間 2,473 ms
コンパイル使用メモリ 211,564 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-09-28 09:38:50
合計ジャッジ時間 16,145 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 238 ms
12,672 KB
testcase_11 AC 201 ms
10,060 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 118 ms
8,320 KB
testcase_15 AC 15 ms
6,944 KB
testcase_16 AC 199 ms
11,648 KB
testcase_17 AC 168 ms
8,960 KB
testcase_18 AC 112 ms
8,192 KB
testcase_19 AC 181 ms
10,112 KB
testcase_20 WA -
testcase_21 AC 349 ms
14,464 KB
testcase_22 AC 375 ms
14,544 KB
testcase_23 AC 375 ms
14,536 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 253 ms
14,464 KB
testcase_27 AC 296 ms
14,540 KB
testcase_28 AC 390 ms
14,540 KB
testcase_29 AC 333 ms
14,464 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 349 ms
14,412 KB
testcase_33 AC 320 ms
14,336 KB
testcase_34 AC 288 ms
14,540 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 350 ms
14,464 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 383 ms
14,464 KB
testcase_41 AC 392 ms
14,544 KB
testcase_42 AC 392 ms
14,408 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long 
signed main(){
	int N,M,K;
	cin >> N >> M >> K;
	int c[N + 1],a[M + 1];
	for(int i = 1;i <= N;i++) cin >> c[i];
	for(int i = 1;i <= M;i++) cin >> a[i];
	map<int,int> m;
	for(int i = 1;i <= K;i++){
		m[c[i]]++;
	}
	int ans = pow(10,17);
	for(auto [key,value] : m){
		ans = min(ans,a[key] * (K - value));
	}
	for(int i = K + 1;i <= N;i++){
		m[c[i - K]]--;
		if(m[c[i - K]] == 0) m.erase(m[c[i - K]]);
		m[c[i]]++;
		ans = min(ans,min(a[c[i - K]] * (K - m[c[i - K]]),a[c[i]] * (K - m[c[i]])));
	}
	cout << ans << endl;
}
0