結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー shobonvipshobonvip
提出日時 2023-05-19 22:39:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 3,000 ms
コード長 1,027 bytes
コンパイル時間 4,711 ms
コンパイル使用メモリ 261,908 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-20 01:09:11
合計ジャッジ時間 9,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,820 KB
testcase_01 AC 84 ms
6,816 KB
testcase_02 AC 75 ms
6,820 KB
testcase_03 AC 60 ms
6,820 KB
testcase_04 AC 68 ms
6,820 KB
testcase_05 AC 56 ms
6,820 KB
testcase_06 AC 52 ms
6,816 KB
testcase_07 AC 63 ms
6,820 KB
testcase_08 AC 71 ms
6,816 KB
testcase_09 AC 80 ms
6,820 KB
testcase_10 AC 51 ms
6,816 KB
testcase_11 AC 70 ms
6,816 KB
testcase_12 AC 67 ms
6,816 KB
testcase_13 AC 85 ms
6,816 KB
testcase_14 AC 48 ms
6,816 KB
testcase_15 AC 63 ms
6,820 KB
testcase_16 AC 44 ms
6,816 KB
testcase_17 AC 76 ms
6,820 KB
testcase_18 AC 80 ms
6,820 KB
testcase_19 AC 49 ms
6,816 KB
testcase_20 AC 58 ms
6,816 KB
testcase_21 AC 45 ms
6,816 KB
testcase_22 AC 50 ms
6,816 KB
testcase_23 AC 55 ms
6,816 KB
testcase_24 AC 96 ms
6,816 KB
testcase_25 AC 66 ms
6,820 KB
testcase_26 AC 107 ms
6,820 KB
testcase_27 AC 58 ms
6,816 KB
testcase_28 AC 60 ms
6,816 KB
testcase_29 AC 72 ms
6,816 KB
testcase_30 AC 96 ms
6,816 KB
testcase_31 AC 246 ms
6,816 KB
testcase_32 AC 250 ms
6,816 KB
testcase_33 AC 253 ms
6,816 KB
testcase_34 AC 247 ms
6,820 KB
testcase_35 AC 249 ms
6,820 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 2 ms
6,820 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 262 ms
6,816 KB
testcase_42 AC 263 ms
6,820 KB
testcase_43 AC 87 ms
6,816 KB
testcase_44 AC 60 ms
6,824 KB
testcase_45 AC 63 ms
6,820 KB
testcase_46 AC 54 ms
6,820 KB
testcase_47 AC 28 ms
6,816 KB
testcase_48 AC 2 ms
6,820 KB
testcase_49 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

ll h2(int a, int b, int c, ll y, ll z){
	int targ1 = min(b, c);
	int targ2 = min(a, c-targ1);
	ll ret = y * targ1 + z * targ2;
	targ2 = min(a, c);
	targ1 = min(b, c-targ2);
	ret = max(ret, y * targ1 + z * targ2);
	return ret;
}

void solve(){
	int a, b, c; cin >> a >> b >> c;
	ll x, y, z, w; cin >> x >> y >> z >> w;
	ll ans = 0;
	for (int k=0; k<=min(a, min(b, c)); k++){
		ll tmp = w * k;
		int ub = min(a, b) - k;
		int lb = 0;
		while (ub - lb > 2){
			int t1 = (ub + 2 * lb) / 3;
			int t2 = (ub * 2 + lb) / 3;
			if (h2(a-k-t1, b-k-t1, c-k, y, z) + x * t1 < h2(a-k-t2, b-k-t2, c-k, y, z) + x * t2){
				lb = t1;
			}else{
				ub = t2;
			}
		}
		for (int t=lb; t<=ub; t++){
			ans = max(ans, tmp + h2(a-k-t, b-k-t, c-k, y, z) + x * t);
		}
	}
	cout << ans << endl;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int t; cin >> t;
	while(t--) solve();
}
0