結果

問題 No.2852 Yakitori Optimization Problem
ユーザー karinohitokarinohito
提出日時 2024-09-04 10:49:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 205,756 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-04 10:49:21
合計ジャッジ時間 5,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
6,812 KB
testcase_01 AC 60 ms
6,940 KB
testcase_02 AC 50 ms
6,944 KB
testcase_03 AC 80 ms
7,808 KB
testcase_04 AC 63 ms
6,944 KB
testcase_05 AC 25 ms
6,944 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 64 ms
6,948 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 79 ms
7,680 KB
testcase_10 AC 83 ms
7,936 KB
testcase_11 AC 83 ms
7,936 KB
testcase_12 AC 80 ms
7,936 KB
testcase_13 AC 81 ms
7,936 KB
testcase_14 AC 83 ms
7,936 KB
testcase_15 AC 81 ms
7,936 KB
testcase_16 AC 82 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,K;
    cin>>N>>K;
    vector<ll> A(N),B(N),C(N);
    ll an=0;
    for(int i=0;i<N;i++){
        cin>>A[i];
        an+=A[i];
    }
    for(int i=0;i<N;i++){
        cin>>B[i];
    }
    for(int i=0;i<N;i++){
        cin>>C[i];
        an+=C[i];
        B[i]-=C[i];
    }
    sort(B.begin(),B.end());
    reverse(B.begin(),B.end());
    for(int i=0;i<K;i++)an+=B[i];
    cout<<an<<endl;
    

}
0