結果

問題 No.2701 A cans -> B cans
ユーザー flippergoflippergo
提出日時 2024-10-16 08:39:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,108 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 98,644 KB
実行使用メモリ 199,552 KB
最終ジャッジ日時 2024-10-16 08:39:50
合計ジャッジ時間 17,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 8 ms
5,248 KB
testcase_07 AC 9 ms
5,248 KB
testcase_08 AC 8 ms
5,248 KB
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 9 ms
5,248 KB
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 9 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 8 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 9 ms
5,248 KB
testcase_18 AC 8 ms
5,248 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 9 ms
5,248 KB
testcase_22 AC 9 ms
5,248 KB
testcase_23 AC 9 ms
5,248 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 9 ms
5,248 KB
testcase_26 AC 197 ms
199,424 KB
testcase_27 AC 192 ms
199,296 KB
testcase_28 AC 185 ms
199,296 KB
testcase_29 AC 268 ms
199,296 KB
testcase_30 AC 279 ms
199,296 KB
testcase_31 AC 278 ms
199,296 KB
testcase_32 AC 267 ms
199,296 KB
testcase_33 AC 270 ms
199,296 KB
testcase_34 AC 279 ms
199,296 KB
testcase_35 AC 263 ms
199,296 KB
testcase_36 AC 266 ms
199,296 KB
testcase_37 AC 271 ms
199,296 KB
testcase_38 AC 275 ms
199,296 KB
testcase_39 AC 277 ms
199,296 KB
testcase_40 AC 267 ms
199,296 KB
testcase_41 AC 266 ms
199,296 KB
testcase_42 AC 267 ms
199,296 KB
testcase_43 AC 274 ms
199,296 KB
testcase_44 AC 264 ms
199,296 KB
testcase_45 AC 270 ms
199,296 KB
testcase_46 AC 265 ms
199,296 KB
testcase_47 AC 279 ms
199,168 KB
testcase_48 AC 267 ms
199,424 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 452 ms
199,296 KB
testcase_70 AC 423 ms
199,296 KB
testcase_71 AC 424 ms
199,296 KB
testcase_72 AC 448 ms
199,296 KB
testcase_73 AC 438 ms
199,424 KB
testcase_74 AC 443 ms
199,296 KB
testcase_75 AC 429 ms
199,296 KB
testcase_76 AC 423 ms
199,296 KB
testcase_77 AC 453 ms
199,296 KB
testcase_78 AC 424 ms
199,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    int N, M;
    cin >> N >> M;

    // dpテーブルとA配列をlong long型に変更
    vector<vector<long long>> dp(N + 1, vector<long long>(M + 1, 0));
    vector<vector<long long>> A(N + 1, vector<long long>(3));

    // 入力処理
    for (int i = 1; i <= N; i++) {
        for (int j = 0; j < 3; j++) {
            cin >> A[i][j];
        }
    }

    // DP計算
    for (int i = 1; i <= N; i++) {
        for (int j = 1; j <= M; j++) {
            dp[i][j] = dp[i - 1][j];  // まずは前の行の値を引き継ぐ
            if (j >= A[i][0]) {  // A[i][0]が使える場合
                long long k = (j - A[i][0]) / (A[i][0] - A[i][1]);  // kを計算
                // dpテーブルの更新、より大きな値を選択
                dp[i][j] = max(dp[i][j], dp[i - 1][j - A[i][0] - k * (A[i][0] - A[i][1])] + (k + 1) * A[i][1] * A[i][2]);
            }
        }
    }

    // 結果出力
    for (int j = 1; j <= M; j++) {
        cout << dp[N][j] << endl;
    }

    return 0;
}
0