結果

問題 No.2549 Paint Eggs
ユーザー tonphytonphy
提出日時 2023-11-25 13:35:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 69,588 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-09-26 10:28:15
合計ジャッジ時間 7,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 116 ms
7,680 KB
testcase_11 AC 108 ms
7,296 KB
testcase_12 AC 87 ms
7,040 KB
testcase_13 AC 109 ms
7,424 KB
testcase_14 AC 80 ms
6,784 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 104 ms
7,424 KB
testcase_17 AC 70 ms
6,784 KB
testcase_18 AC 61 ms
6,400 KB
testcase_19 AC 83 ms
6,912 KB
testcase_20 AC 142 ms
8,192 KB
testcase_21 AC 142 ms
8,192 KB
testcase_22 AC 141 ms
8,192 KB
testcase_23 AC 142 ms
8,192 KB
testcase_24 AC 142 ms
8,192 KB
testcase_25 AC 140 ms
8,192 KB
testcase_26 AC 142 ms
8,192 KB
testcase_27 AC 141 ms
8,192 KB
testcase_28 AC 142 ms
8,192 KB
testcase_29 AC 141 ms
8,192 KB
testcase_30 AC 142 ms
8,192 KB
testcase_31 AC 141 ms
8,192 KB
testcase_32 AC 142 ms
8,192 KB
testcase_33 AC 141 ms
8,192 KB
testcase_34 AC 141 ms
8,320 KB
testcase_35 AC 144 ms
8,192 KB
testcase_36 AC 142 ms
8,192 KB
testcase_37 AC 141 ms
8,192 KB
testcase_38 AC 140 ms
8,192 KB
testcase_39 AC 142 ms
8,320 KB
testcase_40 AC 141 ms
8,192 KB
testcase_41 AC 143 ms
8,192 KB
testcase_42 AC 143 ms
8,192 KB
testcase_43 AC 142 ms
8,192 KB
testcase_44 AC 142 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<climits>
using namespace std;

typedef long long ll;

int main(){
  ll n,m,k;
  ll color[200005];
  ll cost[200005];
  ll cnt[200005]={0};

  cin>>n>>m>>k;
  for(int i=1;i<=n;i++){
    cin>>color[i];
  }
  for(int i=1;i<=m;i++){
    cin>>cost[i];
  }

  ll minimum=LLONG_MAX;
  for(int i=1;i<=k;i++){
    cnt[color[i]]++;
  }
  for(int i=1;i<=m;i++){
    minimum=min(minimum,cost[i]*(k-cnt[i]));
  }
  for(int i=1;i<=n-k;i++){
    int left=color[i];
    int right=color[i+k];
    cnt[left]--;
    cnt[right]++;
    minimum=min(minimum,cost[left]*(k-cnt[left]));
    minimum=min(minimum,cost[right]*(k-cnt[right]));
  }
  cout<<minimum<<endl;
  return(0);
}
0