結果

問題 No.617 Nafmo、買い出しに行く
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-12-18 10:54:24
言語 C++11
(gcc 11.4.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 745 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 51,856 KB
最終ジャッジ日時 2024-04-27 02:30:37
合計ジャッジ時間 643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:3: error: ‘vector’ was not declared in this scope
    7 |   vector<int> a(n);
      |   ^~~~~~
main.cpp:3:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
    2 | #include <algorithm>
  +++ |+#include <vector>
    3 | using namespace std;
main.cpp:7:10: error: expected primary-expression before ‘int’
    7 |   vector<int> a(n);
      |          ^~~
main.cpp:8:41: error: ‘a’ was not declared in this scope
    8 |   for(int i=0; i<n; ++i) { scanf("%d", &a[i]); }
      |                                         ^
main.cpp:10:17: error: expected primary-expression before ‘bool’
   10 |   vector<vector<bool>> dp(n+1, vector<bool>(K+1));
      |                 ^~~~
main.cpp:11:3: error: ‘dp’ was not declared in this scope
   11 |   dp[0][0] = true;
      |   ^~
main.cpp:16:14: error: ‘a’ was not declared in this scope
   16 |       if(k + a[i] <= K) {
      |              ^
main.cpp:6:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   int n, K; scanf("%d%d", &n, &K);
      |             ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

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

int main(void) {
  int n, K; scanf("%d%d", &n, &K);
  vector<int> a(n);
  for(int i=0; i<n; ++i) { scanf("%d", &a[i]); }
  // dp[i番目を選ぶか選ばないか悩んでいる][これまでの重さ] := 可否
  vector<vector<bool>> dp(n+1, vector<bool>(K+1));
  dp[0][0] = true;
  for(int i=0; i<n; ++i) {
    for(int k=0; k<=K; ++k) { // K を含めるのを忘れないように
      if(!dp[i][k]) { continue; }
      dp[i+1][k]        = true; // i番目を選ばない
      if(k + a[i] <= K) {
        dp[i+1][k+a[i]] = true; // i番目を選ぶ
      }
    }
  }
  for(int k=K; k>=0; --k) {
    if(dp[n][k]) {
      printf("%d\n", k);
      return 0;
    }
  }
  throw;
}
0