結果

問題 No.2701 A cans -> B cans
ユーザー tnakao0123tnakao0123
提出日時 2024-06-17 17:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 1,000 ms
コード長 873 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 44,540 KB
実行使用メモリ 198,728 KB
最終ジャッジ日時 2024-06-17 17:27:45
合計ジャッジ時間 8,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 13 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 13 ms
6,944 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 13 ms
6,944 KB
testcase_19 AC 13 ms
6,944 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 13 ms
6,940 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 12 ms
6,944 KB
testcase_25 AC 13 ms
6,944 KB
testcase_26 AC 36 ms
23,296 KB
testcase_27 AC 36 ms
23,040 KB
testcase_28 AC 36 ms
23,168 KB
testcase_29 AC 85 ms
158,456 KB
testcase_30 AC 82 ms
158,964 KB
testcase_31 AC 86 ms
157,676 KB
testcase_32 AC 81 ms
156,280 KB
testcase_33 AC 81 ms
152,472 KB
testcase_34 AC 80 ms
158,652 KB
testcase_35 AC 85 ms
153,660 KB
testcase_36 AC 79 ms
161,504 KB
testcase_37 AC 81 ms
161,128 KB
testcase_38 AC 82 ms
156,812 KB
testcase_39 AC 86 ms
155,196 KB
testcase_40 AC 85 ms
156,208 KB
testcase_41 AC 82 ms
158,004 KB
testcase_42 AC 83 ms
158,816 KB
testcase_43 AC 83 ms
159,972 KB
testcase_44 AC 81 ms
155,536 KB
testcase_45 AC 82 ms
161,560 KB
testcase_46 AC 80 ms
157,552 KB
testcase_47 AC 85 ms
154,224 KB
testcase_48 AC 80 ms
161,652 KB
testcase_49 AC 84 ms
156,488 KB
testcase_50 AC 87 ms
155,932 KB
testcase_51 AC 81 ms
162,360 KB
testcase_52 AC 82 ms
159,648 KB
testcase_53 AC 81 ms
158,564 KB
testcase_54 AC 83 ms
167,080 KB
testcase_55 AC 83 ms
155,112 KB
testcase_56 AC 82 ms
155,540 KB
testcase_57 AC 83 ms
156,652 KB
testcase_58 AC 83 ms
151,708 KB
testcase_59 AC 14 ms
6,940 KB
testcase_60 AC 13 ms
6,940 KB
testcase_61 AC 13 ms
6,944 KB
testcase_62 AC 13 ms
6,940 KB
testcase_63 AC 12 ms
6,940 KB
testcase_64 AC 13 ms
6,940 KB
testcase_65 AC 12 ms
6,940 KB
testcase_66 AC 13 ms
6,944 KB
testcase_67 AC 13 ms
6,940 KB
testcase_68 AC 13 ms
6,940 KB
testcase_69 AC 94 ms
198,544 KB
testcase_70 AC 95 ms
198,680 KB
testcase_71 AC 94 ms
198,444 KB
testcase_72 AC 94 ms
198,404 KB
testcase_73 AC 93 ms
198,568 KB
testcase_74 AC 97 ms
198,680 KB
testcase_75 AC 94 ms
198,676 KB
testcase_76 AC 94 ms
198,536 KB
testcase_77 AC 100 ms
198,728 KB
testcase_78 AC 94 ms
198,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2701.cc:  No.2701 A cans -> B cans - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 5000;
const int MAX_M = 5000;

/* typedef */

using ll = long long;

/* global variables */

int as[MAX_N], bs[MAX_N], cs[MAX_N];
ll dp0[MAX_N][MAX_M + 1], dp1[MAX_M + 1], dp2[MAX_M + 1];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);
  for (int i = 0; i < n; i++)
    scanf("%d%d%d", as + i, bs + i, cs + i);

  for (int i = 0; i < n; i++)
    for (int j = as[i]; j <= m; j++) {
      dp0[i][j] = (ll)bs[i] * cs[i] + dp0[i][j - as[i] + bs[i]];
      dp1[j] = max(dp1[j], dp0[i][j]);
    }

  for (int j = 1; j <= m; j++) {
    for (int j1 = 1; j1 <= j; j1++)
      dp2[j] = max(dp2[j], dp1[j1] + dp2[j - j1]);
    printf("%lld\n", dp2[j]);
  }

  return 0;
}
0