結果

問題 No.2317 Expression Menu
ユーザー gyozasukisukigyozasukisuki
提出日時 2023-05-26 22:13:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,339 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 208,752 KB
実行使用メモリ 228,608 KB
最終ジャッジ日時 2024-06-07 07:14:01
合計ジャッジ時間 12,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
228,480 KB
testcase_01 AC 181 ms
228,480 KB
testcase_02 AC 180 ms
228,608 KB
testcase_03 AC 242 ms
228,480 KB
testcase_04 AC 240 ms
228,480 KB
testcase_05 AC 240 ms
228,608 KB
testcase_06 AC 240 ms
228,480 KB
testcase_07 AC 240 ms
228,480 KB
testcase_08 AC 263 ms
228,608 KB
testcase_09 AC 238 ms
228,480 KB
testcase_10 AC 244 ms
228,608 KB
testcase_11 AC 238 ms
228,480 KB
testcase_12 AC 238 ms
228,608 KB
testcase_13 AC 236 ms
228,480 KB
testcase_14 AC 239 ms
228,480 KB
testcase_15 AC 232 ms
228,480 KB
testcase_16 AC 238 ms
228,608 KB
testcase_17 AC 243 ms
228,480 KB
testcase_18 AC 229 ms
228,480 KB
testcase_19 AC 246 ms
228,608 KB
testcase_20 AC 241 ms
228,480 KB
testcase_21 AC 236 ms
228,480 KB
testcase_22 AC 235 ms
228,608 KB
testcase_23 AC 231 ms
228,480 KB
testcase_24 AC 233 ms
228,480 KB
testcase_25 AC 232 ms
228,608 KB
testcase_26 AC 230 ms
228,480 KB
testcase_27 AC 229 ms
228,480 KB
testcase_28 AC 230 ms
228,608 KB
testcase_29 AC 229 ms
228,480 KB
testcase_30 AC 230 ms
228,608 KB
testcase_31 AC 227 ms
228,480 KB
testcase_32 AC 230 ms
228,480 KB
testcase_33 AC 176 ms
228,480 KB
testcase_34 AC 175 ms
228,608 KB
testcase_35 AC 178 ms
228,608 KB
testcase_36 AC 177 ms
228,480 KB
testcase_37 AC 179 ms
228,480 KB
testcase_38 AC 209 ms
228,480 KB
testcase_39 AC 208 ms
228,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
//using namespace atcoder;
using namespace std;
const int INF = 1e9;
using ll = long long;
using inv = vector<int>;
using stv = vector<string>;
using pint = pair<int,int>;
#define FOR(i,l,r) for(int i=(l); i<(r); i++)
#define rep(i,r) for(int i=0; i<(r); i++)
#define repl(i,r) for(long long i=0; i<(r); i++)
#define FORl(i,l,r) for(long long i=(l); i<(r); i++)
#define INFL ((1LL<<62)-(1LL<<31))
#define pb(x) push_back(x)
#define CIN(x) cin >> x

const ll MOD = 1e9+7;

int N,X,Y;

inv A(305),B(305),C(305);

vector<vector<vector<ll>>> memo(305,vector<vector<ll>>(305,vector<ll>(305,-1LL)));

int main(){
    
    cin >> N >> X >> Y;

    rep(i,N) cin >> A[i] >> B[i] >> C[i];
    memo[0][X][Y] = 0LL;
    // rep(j,X+1) rep(k,Y+1){
    //     memo[0][j][k] = 0;
    // }

    FOR(i,1,N+1){
        rep(j,X+1){
            rep(k,Y+1){
                if(memo[i-1][j][k] == -1) continue;
                
                if(j >= A[i-1] && k >= B[i-1]){
                    memo[i][j-A[i-1]][k-B[i-1]] = max(memo[i][j-A[i-1]][k-B[i-1]],memo[i-1][j][k]+C[i-1]);
                }
                
                memo[i][j][k] = memo[i-1][j][k];
            }
        }

    }

    ll ans = -1LL;

    rep(j,X+1) rep(k,Y+1) ans = max(ans,memo[N][j][k]);
    cout << ans << endl;

    
    
}
0