結果

問題 No.2549 Paint Eggs
ユーザー inkyamaninkyaman
提出日時 2024-03-24 15:06:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 1,293 bytes
コンパイル時間 1,349 ms
コンパイル使用メモリ 124,504 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-30 13:50:32
合計ジャッジ時間 22,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 383 ms
15,488 KB
testcase_11 AC 355 ms
18,944 KB
testcase_12 AC 264 ms
11,136 KB
testcase_13 AC 331 ms
15,232 KB
testcase_14 AC 193 ms
14,848 KB
testcase_15 AC 18 ms
5,248 KB
testcase_16 AC 279 ms
13,952 KB
testcase_17 AC 195 ms
9,216 KB
testcase_18 AC 143 ms
8,320 KB
testcase_19 AC 245 ms
11,776 KB
testcase_20 AC 523 ms
19,712 KB
testcase_21 AC 550 ms
19,712 KB
testcase_22 AC 577 ms
19,584 KB
testcase_23 AC 566 ms
19,584 KB
testcase_24 AC 642 ms
19,584 KB
testcase_25 AC 421 ms
19,584 KB
testcase_26 AC 433 ms
19,584 KB
testcase_27 AC 471 ms
19,584 KB
testcase_28 AC 588 ms
19,584 KB
testcase_29 AC 518 ms
19,532 KB
testcase_30 AC 613 ms
19,584 KB
testcase_31 AC 504 ms
19,584 KB
testcase_32 AC 533 ms
19,584 KB
testcase_33 AC 485 ms
19,712 KB
testcase_34 AC 466 ms
19,584 KB
testcase_35 AC 608 ms
19,584 KB
testcase_36 AC 611 ms
19,584 KB
testcase_37 AC 520 ms
19,712 KB
testcase_38 AC 488 ms
19,584 KB
testcase_39 AC 477 ms
19,584 KB
testcase_40 AC 611 ms
19,584 KB
testcase_41 AC 622 ms
19,584 KB
testcase_42 AC 606 ms
19,584 KB
testcase_43 AC 636 ms
19,584 KB
testcase_44 AC 627 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <math.h>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <iomanip>
#include <climits>
#include <functional>
#include <cassert>
#include <tuple>
using namespace std;
using ll = long long;

int N, M, K;
int C[202020];
ll A[202020], S[202020];

int main() {

    cin >> N >> M >> K;
    for(int i = 1; i <= N; ++i) cin >> C[i];
    for(int i = 1; i <= M; ++i) cin >> A[i];
    
    multiset<pair<ll,int>> mst;
    for(int i = 1; i <= M; ++i) mst.insert({K*A[i],i});
    vector<ll> cost(M+1, 0);
    for(int i = 1; i <= M; ++i) cost[i] = K*A[i];

    for(int i = 1; i <= K-1; ++i) {
        mst.erase({cost[C[i]], C[i]});
        cost[C[i]] -= A[C[i]];
        mst.insert({cost[C[i]], C[i]});
    }

    ll ans = 1e18;
    for(int i = K; i <= N; ++i) {
        mst.erase({cost[C[i]], C[i]});
        cost[C[i]] -= A[C[i]];
        mst.insert({cost[C[i]], C[i]});

        auto itr = mst.begin();
        ll mn = (*itr).first;
        ans = min(ans, mn);

        mst.erase({cost[C[i-K+1]], C[i-K+1]});
        cost[C[i-K+1]] += A[C[i-K+1]];
        mst.insert({cost[C[i-K+1]], C[i-K+1]});

    }

    cout << ans << endl;

}
0