結果

問題 No.2549 Paint Eggs
ユーザー InTheBloomInTheBloom
提出日時 2023-11-20 19:32:17
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 2,565 ms
コンパイル使用メモリ 174,840 KB
実行使用メモリ 23,976 KB
最終ジャッジ日時 2024-09-26 06:41:40
合計ジャッジ時間 9,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
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 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 103 ms
21,632 KB
testcase_11 AC 69 ms
14,856 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 50 ms
13,588 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 76 ms
12,448 KB
testcase_17 AC 55 ms
9,860 KB
testcase_18 AC 43 ms
9,064 KB
testcase_19 AC 65 ms
11,104 KB
testcase_20 WA -
testcase_21 AC 120 ms
23,756 KB
testcase_22 AC 124 ms
23,776 KB
testcase_23 AC 109 ms
23,844 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 106 ms
23,628 KB
testcase_27 AC 108 ms
23,892 KB
testcase_28 AC 114 ms
23,660 KB
testcase_29 AC 112 ms
23,688 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 99 ms
23,892 KB
testcase_33 AC 98 ms
23,944 KB
testcase_34 AC 95 ms
23,640 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 103 ms
23,692 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 103 ms
23,792 KB
testcase_41 AC 102 ms
23,728 KB
testcase_42 AC 103 ms
23,684 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

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を加入させる
        mp[C[left]]--;
        mp[C[right]]++;
        ans = min(ans, 1L*(K-mp[C[left]])*A[C[left]]);
        ans = min(ans, 1L*(K-mp[C[right]])*A[C[right]]);

        left++, right++;
    }

    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