結果

問題 No.2549 Paint Eggs
ユーザー InTheBloomInTheBloom
提出日時 2023-11-20 19:53:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 174,728 KB
実行使用メモリ 23,888 KB
最終ジャッジ日時 2024-09-26 06:41:59
合計ジャッジ時間 7,892 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 122 ms
21,632 KB
testcase_11 AC 74 ms
15,104 KB
testcase_12 AC 75 ms
14,284 KB
testcase_13 AC 87 ms
13,632 KB
testcase_14 AC 53 ms
13,460 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 87 ms
12,656 KB
testcase_17 AC 54 ms
9,852 KB
testcase_18 AC 44 ms
9,068 KB
testcase_19 AC 64 ms
11,192 KB
testcase_20 AC 132 ms
23,760 KB
testcase_21 AC 123 ms
23,760 KB
testcase_22 AC 127 ms
23,784 KB
testcase_23 AC 131 ms
23,712 KB
testcase_24 AC 127 ms
23,660 KB
testcase_25 AC 122 ms
23,836 KB
testcase_26 AC 118 ms
23,752 KB
testcase_27 AC 124 ms
23,764 KB
testcase_28 AC 131 ms
23,788 KB
testcase_29 AC 126 ms
23,560 KB
testcase_30 AC 130 ms
23,768 KB
testcase_31 AC 121 ms
23,808 KB
testcase_32 AC 121 ms
23,888 KB
testcase_33 AC 124 ms
23,812 KB
testcase_34 AC 124 ms
23,640 KB
testcase_35 AC 130 ms
23,732 KB
testcase_36 AC 119 ms
23,764 KB
testcase_37 AC 125 ms
23,812 KB
testcase_38 AC 118 ms
23,720 KB
testcase_39 AC 121 ms
23,788 KB
testcase_40 AC 125 ms
23,668 KB
testcase_41 AC 126 ms
23,868 KB
testcase_42 AC 120 ms
23,688 KB
testcase_43 AC 121 ms
23,748 KB
testcase_44 AC 121 ms
23,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, M, K; readln.read(N, M, K);
    int[] C = readln.split.to!(int[]);
    C[] -= 1;
    int[] A = readln.split.to!(int[]);

    solve(N, M, K, C, A);
}

void solve (int N, int M, int K, int[] C, int[] A) {
    /* スライドしていけば良さそう */
    int[int] mp;
    // 最初の一回
    foreach (i; 0..K) mp[C[i]]++;

    long ans = long.max;

    foreach (key, val; mp) {
        ans = min(ans, 1L*(K-val)*A[key]);
    }

    int left = 0, right = K;
    while (right < N) {
        // [left, right)を保持している
        // leftを除去してrightを加入させる

        mp[C[left]]--;
        mp[C[right]]++;
        ans = min(ans, 1L*(K-mp[C[right]])*A[C[right]]);

        left++, right++;

        //dbg
        //writeln("[", left, ", ", right, ") ", mp);
    }

    // ハマった。単に全部塗り替えるのが最適な場合がある
    foreach (a; A) {
        ans = min(ans, 1L*K*a);
    }

    writeln(ans);
}

void read(T...)(string S, ref T args) {
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0