結果

問題 No.2093 Shio Ramen
ユーザー yansi819yansi819
提出日時 2024-04-13 16:20:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 4,692 ms
コンパイル使用メモリ 254,172 KB
実行使用メモリ 7,672 KB
最終ジャッジ日時 2024-04-13 16:21:02
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 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,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
7,464 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 3 ms
6,948 KB
testcase_17 AC 4 ms
7,364 KB
testcase_18 AC 6 ms
7,556 KB
testcase_19 AC 5 ms
7,544 KB
testcase_20 AC 5 ms
7,440 KB
testcase_21 AC 5 ms
7,672 KB
testcase_22 AC 5 ms
7,536 KB
testcase_23 AC 6 ms
7,408 KB
testcase_24 AC 5 ms
7,528 KB
testcase_25 AC 6 ms
7,460 KB
testcase_26 AC 6 ms
7,556 KB
testcase_27 AC 6 ms
7,588 KB
testcase_28 AC 6 ms
7,528 KB
testcase_29 AC 6 ms
7,420 KB
testcase_30 AC 5 ms
7,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int N, I, s[1010], a[1010];
int dp[1010][1010];

int main() {
  cin >> N >> I;
  for (int i = 0; i < N; i++) cin >> s[i] >> a[i];
  for (int i = 0; i < N; i++) {
    for (int j = 0; j <= I; j++) {
      dp[i + 1][j] = dp[i][j];
      if (j - s[i] >= 0) dp[i + 1][j] = max(dp[i + 1][j], dp[i][j - s[i]] + a[i]);
    }
  }
  int ans = 0;
  for (int j = 0; j <= I; j++) ans = max(ans, dp[N][j]);
  cout << ans << endl;
  return 0;
}
0