結果

問題 No.2852 Yakitori Optimization Problem
ユーザー るこーそーるこーそー
提出日時 2024-09-27 19:59:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 1,357 bytes
コンパイル時間 5,815 ms
コンパイル使用メモリ 318,084 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-27 19:59:36
合計ジャッジ時間 9,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
6,812 KB
testcase_01 AC 167 ms
6,940 KB
testcase_02 AC 139 ms
6,940 KB
testcase_03 AC 227 ms
7,936 KB
testcase_04 AC 181 ms
7,040 KB
testcase_05 AC 68 ms
6,944 KB
testcase_06 AC 24 ms
6,940 KB
testcase_07 AC 182 ms
6,948 KB
testcase_08 AC 18 ms
6,940 KB
testcase_09 AC 328 ms
7,936 KB
testcase_10 AC 245 ms
8,064 KB
testcase_11 AC 268 ms
7,936 KB
testcase_12 AC 293 ms
8,064 KB
testcase_13 AC 257 ms
7,936 KB
testcase_14 AC 241 ms
7,936 KB
testcase_15 AC 234 ms
8,064 KB
testcase_16 AC 235 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define all(v) v.begin(), v.end()
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vvi vector<vi>
#define vvl vector<vl>
#define vvvi vector<vvi>
#define vvvl vector<vvl>

template <class T>
auto debug(const T &vec){
    if constexpr (!std::is_arithmetic_v<typename T::value_type>){
        for (const auto &v : vec)debug<typename T::value_type>(v);
        cout << endl;}
    else{
        for (const auto &e : vec){
            cout << e << " ";}
        cout << endl;}
}

void print(){cout << '\n';}
template <class T, class... Ts>
void print(const T &a, const Ts &...b){
    cout << a;
    (cout << ... << (cout << ' ', b));
    cout << '\n';}

int main(){
    int n,k;
    cin >> n >> k;
    vi a(n),b(n),c(n);
    rep(i,n)cin >> a[i];
    rep(i,n)cin >> b[i];
    rep(i,n)cin >> c[i];

    vector<tuple<int,int,int>> diff(n);
    rep(i,n)diff[i] = {b[i]-c[i],b[i],c[i]};
    sort(all(diff),greater<tuple<int,int,int>>());

    ll ans=accumulate(all(a),0LL);
    rep(i,n){
        if (i<k)ans+=get<1>(diff[i]);
        else ans+=get<2>(diff[i]);
    }
    print(ans);
}
0