結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー milanis48663220milanis48663220
提出日時 2023-05-19 23:08:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 267 ms / 3,000 ms
コード長 2,837 bytes
コンパイル時間 1,315 ms
コンパイル使用メモリ 120,412 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 06:28:46
合計ジャッジ時間 6,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 80 ms
5,376 KB
testcase_02 AC 69 ms
5,376 KB
testcase_03 AC 62 ms
5,376 KB
testcase_04 AC 90 ms
5,376 KB
testcase_05 AC 67 ms
5,376 KB
testcase_06 AC 74 ms
5,376 KB
testcase_07 AC 86 ms
5,376 KB
testcase_08 AC 101 ms
5,376 KB
testcase_09 AC 62 ms
5,376 KB
testcase_10 AC 61 ms
5,376 KB
testcase_11 AC 67 ms
5,376 KB
testcase_12 AC 69 ms
5,376 KB
testcase_13 AC 80 ms
5,376 KB
testcase_14 AC 67 ms
5,376 KB
testcase_15 AC 66 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 78 ms
5,376 KB
testcase_18 AC 80 ms
5,376 KB
testcase_19 AC 64 ms
5,376 KB
testcase_20 AC 72 ms
5,376 KB
testcase_21 AC 47 ms
5,376 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 59 ms
5,376 KB
testcase_24 AC 96 ms
5,376 KB
testcase_25 AC 73 ms
5,376 KB
testcase_26 AC 104 ms
5,376 KB
testcase_27 AC 55 ms
5,376 KB
testcase_28 AC 67 ms
5,376 KB
testcase_29 AC 88 ms
5,376 KB
testcase_30 AC 84 ms
5,376 KB
testcase_31 AC 246 ms
5,376 KB
testcase_32 AC 238 ms
5,376 KB
testcase_33 AC 243 ms
5,376 KB
testcase_34 AC 241 ms
5,376 KB
testcase_35 AC 241 ms
5,376 KB
testcase_36 AC 5 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 5 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 151 ms
5,376 KB
testcase_42 AC 267 ms
5,376 KB
testcase_43 AC 105 ms
5,376 KB
testcase_44 AC 92 ms
5,376 KB
testcase_45 AC 84 ms
5,376 KB
testcase_46 AC 80 ms
5,376 KB
testcase_47 AC 28 ms
5,376 KB
testcase_48 AC 5 ms
5,376 KB
testcase_49 AC 55 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

void solve(){
    ll a, b, c; cin >> a >> b >> c;
    ll x, y, z, w; cin >> x >> y >> z >> w;
    vector<ll> price = {y, z, x};
    auto f = [&](ll a, ll b, ll c, int i){
        vector<ll> cnt = {a, b, c};
        // i以外の組が0
        int j = (i+1)%3;
        int k = (i+2)%3;
        if(cnt[i] >= cnt[j]+cnt[k]){
            return price[k]*cnt[j]+price[j]*cnt[k];
        }else{
            if(price[k] > price[j]){
                swap(j, k);
            }
            ll cj = min(cnt[i], cnt[k]);
            ll ck = cnt[i]-cj;
            return cj*price[j]+ck*price[k];
        }
    };
    if(x+y+z >= 2*w){
        ll ans = 0;
        for(ll p = 0; p <= min({1ll, a, b, c}); p++){
            vector<ll> cnt = {a, b, c};
            for(int i = 0; i < 3; i++){
                int j = (i+1)%3;
                int k = (i+2)%3;
                for(ll x = 0; x+p <= min(cnt[j], cnt[k]); x++){
                    ll tmp = p*w + price[i]*x;
                    auto cc = cnt;
                    cc[i] -= p;
                    cc[j] -= x+p;
                    cc[k] -= x+p;
                    tmp += f(cc[0], cc[1], cc[2], i);
                    chmax(ans, tmp);
                }
            }
        }
        cout << ans << endl;
    }else{
        ll ans = 0;
        for(ll p = 0; p <= min({a, b, c}); p++){
            ll tmp = p*w;
            for(int i = 0; i < 3; i++){
                chmax(ans, tmp+f(a-p, b-p, c-p, i));
            }
        }
        cout << ans << endl;
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int t; cin >> t;
    while(t--) solve();
}
0