結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー shobonvipshobonvip
提出日時 2023-05-19 22:39:49
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

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