結果

問題 No.2852 Yakitori Optimization Problem
ユーザー KKT89KKT89
提出日時 2024-09-21 14:39:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 207,112 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-21 14:39:15
合計ジャッジ時間 4,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
5,248 KB
testcase_01 AC 56 ms
6,656 KB
testcase_02 AC 47 ms
6,016 KB
testcase_03 AC 102 ms
7,808 KB
testcase_04 AC 62 ms
6,912 KB
testcase_05 AC 24 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 60 ms
6,784 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 83 ms
7,808 KB
testcase_10 AC 84 ms
7,808 KB
testcase_11 AC 81 ms
7,936 KB
testcase_12 AC 77 ms
8,064 KB
testcase_13 AC 76 ms
7,936 KB
testcase_14 AC 77 ms
7,936 KB
testcase_15 AC 78 ms
7,808 KB
testcase_16 AC 78 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n, k;
    cin >> n >> k;
    ll res = 0;
    vector<ll> a(n), b(n), c(n);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        res += a[i];
    }
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
        c[i] = a[i];
    }
    for (int i = 0; i < n; ++i) {
        cin >> b[i];
        c[i] -= b[i];
        res += b[i];
    }
    sort(c.rbegin(), c.rend());
    for (int i = 0; i < k; ++i) {
        res += c[i];
    }
    cout << res << endl;
}
0