結果

問題 No.2549 Paint Eggs
ユーザー tnakao0123tnakao0123
提出日時 2023-11-25 22:38:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 52,524 KB
実行使用メモリ 13,436 KB
最終ジャッジ日時 2024-09-26 11:22:08
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,808 KB
testcase_01 AC 5 ms
7,808 KB
testcase_02 AC 5 ms
7,936 KB
testcase_03 AC 5 ms
7,936 KB
testcase_04 AC 5 ms
7,936 KB
testcase_05 AC 5 ms
7,808 KB
testcase_06 AC 4 ms
7,936 KB
testcase_07 AC 5 ms
7,936 KB
testcase_08 AC 5 ms
7,808 KB
testcase_09 AC 5 ms
7,808 KB
testcase_10 AC 66 ms
12,544 KB
testcase_11 AC 57 ms
11,200 KB
testcase_12 AC 50 ms
11,264 KB
testcase_13 AC 59 ms
12,160 KB
testcase_14 AC 38 ms
10,200 KB
testcase_15 AC 9 ms
8,064 KB
testcase_16 AC 61 ms
11,892 KB
testcase_17 AC 45 ms
10,516 KB
testcase_18 AC 36 ms
10,112 KB
testcase_19 AC 48 ms
11,136 KB
testcase_20 AC 80 ms
13,296 KB
testcase_21 AC 81 ms
13,396 KB
testcase_22 AC 79 ms
13,312 KB
testcase_23 AC 79 ms
13,184 KB
testcase_24 AC 81 ms
13,184 KB
testcase_25 AC 80 ms
13,432 KB
testcase_26 AC 79 ms
13,436 KB
testcase_27 AC 79 ms
13,312 KB
testcase_28 AC 81 ms
13,184 KB
testcase_29 AC 79 ms
13,312 KB
testcase_30 AC 79 ms
13,304 KB
testcase_31 AC 80 ms
13,312 KB
testcase_32 AC 82 ms
13,196 KB
testcase_33 AC 80 ms
13,412 KB
testcase_34 AC 80 ms
13,264 KB
testcase_35 AC 79 ms
13,312 KB
testcase_36 AC 81 ms
13,312 KB
testcase_37 AC 78 ms
13,276 KB
testcase_38 AC 77 ms
13,212 KB
testcase_39 AC 78 ms
13,348 KB
testcase_40 AC 78 ms
13,332 KB
testcase_41 AC 78 ms
13,312 KB
testcase_42 AC 78 ms
13,308 KB
testcase_43 AC 78 ms
13,312 KB
testcase_44 AC 80 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2549.cc:  No.2549 Paint Eggs - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_M = 200000;

/* typedef */

typedef long long ll;
typedef vector<int> vi;

/* global variables */

/* subroutines */

int cs[MAX_N], as[MAX_M];
vi cvs[MAX_M];

/* main */

int main() {
  int n, m, k;
  scanf("%d%d%d", &n, &m, &k);
  for (int i = 0; i < n; i++) scanf("%d", cs + i), cs[i]--;
  for (int i = 0; i < m; i++) scanf("%d", as + i);

  for (int i = 0; i < n; i++) cvs[cs[i]].push_back(i);

  ll mins = (ll)k * *min_element(as, as + m);
  for (int ci = 0; ci < m; ci++) {
    vi &cv = cvs[ci];
    int l = cv.size();
    for (int i = 0, j = 0; i < l; i++) {
      while (j < l && cv[j] - cv[i] < k) j++;
      ll s = (ll)(k - (j - i)) * as[ci];
      mins = min(mins, s);
    }
  }

  printf("%lld\n", mins);

  return 0;
}
0