結果

問題 No.617 Nafmo、買い出しに行く
ユーザー yansi819yansi819
提出日時 2024-03-30 16:56:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 3,887 ms
コンパイル使用メモリ 261,308 KB
実行使用メモリ 44,108 KB
最終ジャッジ日時 2024-09-30 17:36:33
合計ジャッジ時間 5,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
14,672 KB
testcase_01 AC 2 ms
9,676 KB
testcase_02 AC 10 ms
15,948 KB
testcase_03 AC 25 ms
22,732 KB
testcase_04 AC 5 ms
13,768 KB
testcase_05 AC 45 ms
27,724 KB
testcase_06 AC 114 ms
44,108 KB
testcase_07 AC 110 ms
42,624 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 85 ms
31,232 KB
testcase_11 AC 89 ms
37,248 KB
testcase_12 AC 52 ms
21,504 KB
testcase_13 AC 31 ms
14,336 KB
testcase_14 AC 41 ms
17,792 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 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 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int N, K;
bool dp[25][2020202];
int A[25];

int main() {
  cin >> N >> K;
  for (int i = 0; i < N; i++) cin >> A[i];
  dp[0][0] = true;
  for (int j = 0; j <= K; j++) {
    for (int i = 0; i < N; i++) {
      dp[i + 1][j] = dp[i][j]; 
      if (j - A[i] >= 0 && dp[i][j - A[i]]) dp[i + 1][j] = true;
    }
  }
  //for (int i = 0; i <= N; i++) {
  //  for (int j = 0; j <= K; j++) cout << dp[i][j] << " \n"[j == K];
  //}
  int ans = 0;
  for (int i = 0; i <= K; i++) if (dp[N][i]) ans = i;
  cout << ans << endl;
  return 0;
}
0