結果

問題 No.2852 Yakitori Optimization Problem
ユーザー tottoripapertottoripaper
提出日時 2024-08-27 02:44:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 207,864 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-08-27 02:44:25
合計ジャッジ時間 5,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,812 KB
testcase_01 AC 65 ms
7,680 KB
testcase_02 AC 56 ms
6,940 KB
testcase_03 AC 91 ms
9,344 KB
testcase_04 AC 72 ms
8,192 KB
testcase_05 AC 27 ms
6,940 KB
testcase_06 AC 10 ms
6,940 KB
testcase_07 AC 72 ms
8,064 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 89 ms
9,216 KB
testcase_10 AC 92 ms
9,344 KB
testcase_11 AC 92 ms
9,472 KB
testcase_12 AC 92 ms
9,344 KB
testcase_13 AC 92 ms
9,472 KB
testcase_14 AC 92 ms
9,472 KB
testcase_15 AC 93 ms
9,344 KB
testcase_16 AC 91 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;

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

    int N, K;
    std::cin >> N >> K;

    std::vector<ll> A(N), B(N), C(N);
    for(int i=0;i<N;i++){
        std::cin >> A[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> B[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> C[i];
    }

    ll res = std::accumulate(std::begin(A), std::end(A), 0ll) + std::accumulate(std::begin(C), std::end(C), 0ll);
    std::vector<ll> D(N);
    for(int i=0;i<N;i++){
        D[i] = B[i] - C[i];
    }
    std::sort(std::rbegin(D), std::rend(D));
    res += std::accumulate(D.begin(), D.begin() + K, 0ll);

    std::cout << res << std::endl;
}
0