結果

問題 No.2317 Expression Menu
ユーザー ttkkggwwttkkggww
提出日時 2023-05-26 21:42:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 5,085 ms
コンパイル使用メモリ 263,244 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 05:53:48
合計ジャッジ時間 6,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
ll dp[303][303];
ll n,x,y;
vector<ll> A,B,C;

void solve(){
	for(ll k = 0;k<n;k++){
		for(ll i = x;i>=0;i--){
			for(ll j = y;j>=0;j--){
				ll a = A[k];
				ll b = B[k];
				ll c = C[k];
				if(i-a>=0&&j-b>=0){
					dp[i][j] = max(dp[i][j],dp[i-a][j-b]+c);
				}
			}
		}
	}
	cout<<dp[x][y]<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n >> x >> y;
	A = B = C = vector<ll>(n);
	for(ll i = 0;i<n;i++){
		cin >> A[i] >> B[i] >> C[i];
	}
	solve();
}
0