結果

問題 No.2701 A cans -> B cans
ユーザー detteiuudetteiuu
提出日時 2024-10-08 08:16:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 1,000 ms
コード長 1,314 bytes
コンパイル時間 4,995 ms
コンパイル使用メモリ 315,780 KB
実行使用メモリ 199,040 KB
最終ジャッジ日時 2024-10-08 08:17:10
合計ジャッジ時間 17,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 208 ms
198,912 KB
testcase_27 AC 227 ms
198,912 KB
testcase_28 AC 206 ms
198,912 KB
testcase_29 AC 229 ms
199,040 KB
testcase_30 AC 229 ms
199,040 KB
testcase_31 AC 226 ms
198,912 KB
testcase_32 AC 238 ms
199,040 KB
testcase_33 AC 228 ms
198,912 KB
testcase_34 AC 225 ms
198,912 KB
testcase_35 AC 224 ms
198,912 KB
testcase_36 AC 223 ms
198,912 KB
testcase_37 AC 219 ms
198,912 KB
testcase_38 AC 250 ms
198,912 KB
testcase_39 AC 227 ms
198,912 KB
testcase_40 AC 226 ms
199,040 KB
testcase_41 AC 227 ms
198,912 KB
testcase_42 AC 224 ms
198,912 KB
testcase_43 AC 243 ms
199,040 KB
testcase_44 AC 222 ms
198,912 KB
testcase_45 AC 223 ms
198,912 KB
testcase_46 AC 219 ms
199,040 KB
testcase_47 AC 218 ms
199,040 KB
testcase_48 AC 221 ms
198,912 KB
testcase_49 AC 224 ms
199,040 KB
testcase_50 AC 221 ms
198,912 KB
testcase_51 AC 223 ms
199,040 KB
testcase_52 AC 249 ms
199,040 KB
testcase_53 AC 223 ms
198,912 KB
testcase_54 AC 222 ms
199,040 KB
testcase_55 AC 223 ms
199,040 KB
testcase_56 AC 224 ms
199,040 KB
testcase_57 AC 250 ms
199,040 KB
testcase_58 AC 227 ms
199,040 KB
testcase_59 AC 3 ms
5,248 KB
testcase_60 AC 3 ms
5,248 KB
testcase_61 AC 4 ms
5,248 KB
testcase_62 AC 3 ms
5,248 KB
testcase_63 AC 3 ms
5,248 KB
testcase_64 AC 3 ms
5,248 KB
testcase_65 AC 3 ms
5,248 KB
testcase_66 AC 4 ms
5,248 KB
testcase_67 AC 3 ms
5,248 KB
testcase_68 AC 3 ms
5,248 KB
testcase_69 AC 235 ms
198,912 KB
testcase_70 AC 243 ms
198,912 KB
testcase_71 AC 263 ms
198,912 KB
testcase_72 AC 241 ms
198,912 KB
testcase_73 AC 240 ms
199,040 KB
testcase_74 AC 244 ms
198,912 KB
testcase_75 AC 243 ms
199,040 KB
testcase_76 AC 263 ms
198,912 KB
testcase_77 AC 237 ms
198,912 KB
testcase_78 AC 241 ms
198,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define pass (void)0
#define INF (1<<30)-1
#define INFLL (1LL<<60)-1
using namespace std;
using namespace atcoder;
using mint = modint998244353;
using ll = long long;

int main() {
    int N, M;
    cin >> N >> M;
    vector<tuple<ll, ll, ll>> can(N);
    for (int i = 0; i < N; ++i) {
        ll A, B, C;
        cin >> A >> B >> C;
        can[i] = make_tuple(A, B, C);
    }

    vector<vector<ll>> dp(N+1, vector<ll>(M+1, -INF));
    dp[0][0] = 0;

    for (int i = 0; i < N; ++i) {
        ll A = get<0>(can[i]);
        ll B = get<1>(can[i]);
        ll C = get<2>(can[i]);
        ll first = A;
        ll second = A - B;

        for (int j = 0; j <= M; ++j) {
            if (dp[i+1][j] != -INF && j + second <= M) {
                dp[i+1][j + second] = max(dp[i+1][j + second], dp[i+1][j] + C * B);
            }
            if (dp[i][j] != -INF) {
                dp[i+1][j] = max(dp[i+1][j], dp[i][j]);
                if (j + first <= M) {
                    dp[i+1][j + first] = max(dp[i+1][j + first], dp[i][j] + C * B);
                }
            }
        }
    }

    for (int i = 1; i <= M; ++i) {
        dp[N][i] = max(dp[N][i], dp[N][i-1]);
    }

    for (int i = 1; i <= M; ++i) {
        cout << dp[N][i] << "\n";
    }

    return 0;
}
0