結果

問題 No.2549 Paint Eggs
ユーザー dyktr_06dyktr_06
提出日時 2023-11-22 09:12:55
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 202,500 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-26 07:25:47
合計ジャッジ時間 5,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 36 ms
7,168 KB
testcase_11 AC 32 ms
7,040 KB
testcase_12 AC 26 ms
6,016 KB
testcase_13 AC 33 ms
6,784 KB
testcase_14 AC 23 ms
6,016 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 30 ms
6,528 KB
testcase_17 AC 20 ms
5,504 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 25 ms
5,760 KB
testcase_20 AC 42 ms
7,936 KB
testcase_21 AC 41 ms
7,936 KB
testcase_22 AC 41 ms
7,936 KB
testcase_23 AC 42 ms
7,936 KB
testcase_24 AC 42 ms
7,936 KB
testcase_25 AC 41 ms
7,808 KB
testcase_26 AC 40 ms
7,936 KB
testcase_27 AC 41 ms
7,936 KB
testcase_28 AC 42 ms
7,936 KB
testcase_29 AC 42 ms
7,936 KB
testcase_30 AC 43 ms
7,808 KB
testcase_31 AC 42 ms
7,936 KB
testcase_32 AC 41 ms
7,936 KB
testcase_33 AC 44 ms
7,936 KB
testcase_34 AC 41 ms
7,936 KB
testcase_35 AC 42 ms
7,936 KB
testcase_36 AC 41 ms
7,936 KB
testcase_37 AC 41 ms
7,936 KB
testcase_38 AC 41 ms
8,064 KB
testcase_39 AC 41 ms
7,936 KB
testcase_40 AC 41 ms
7,936 KB
testcase_41 AC 41 ms
7,808 KB
testcase_42 AC 41 ms
7,808 KB
testcase_43 AC 42 ms
7,936 KB
testcase_44 AC 41 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const long long INF = 1LL << 60;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m, k; cin >> n >> m >> k;
    vector<long long> c(n), a(m);
    for(int i = 0; i < n; i++){
        cin >> c[i];
        c[i]--;
    }
    for(int i = 0; i < m; i++){
        cin >> a[i];
    }

    vector<long long> cost(m);
    for(int i = 0; i < m; i++){
        cost[i] = a[i] * k;
    }
    for(int i = 0; i < k; i++){
        cost[c[i]] -= a[c[i]];
    }

    long long ans = INF;
    for(int i = 0; i < m; i++){
        ans = min(ans, cost[i]);
    }

    for(int i = 0; i < n - k; i++){
        cost[c[i]] += a[c[i]];
        cost[c[i + k]] -= a[c[i + k]];
        ans = min(ans, cost[c[i + k]]);
    }
    cout << ans << endl;
}
0