結果

問題 No.914 Omiyage
ユーザー hokutohokuto
提出日時 2021-08-31 07:02:07
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 1,510 ms
コンパイル使用メモリ 144,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 18:57:51
合計ジャッジ時間 2,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <functional>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
using namespace std;
using ll = long long int;
#define chmax(x,y)  x = (x > (y)) ? x : (x = (y));
#define chmin(x,y)  x = (x < (y)) ? x : (x = (y));


int main(int argc, char const *argv[])
{
  int N,M,K; cin >> N >> M >> K;
  vector<vector<int>> A(N,vector<int>(M));
  for(auto &a : A)
  {
    for(auto &e : a)
    {
      cin >> e;
    }
  }

  vector<vector<int>> dp(N+1,vector<int>(K+1));
  dp[0][0] = 1;
  for(int i=0;i<N;++i)
  {
    for(int j=0;j<K;++j)
    {
      if(dp[i][j])
      {
        for(auto &a : A[i])
        {
          if(j + a <= K)dp[i+1][j+a] = 1;
        }
      }
    }
  }

  int id = 0;
  for(int i=1;i<=K;++i)
  {
    if(dp[N][i])chmax(id,i);
  }
  if(id == 0)std::cout << -1 << std::endl;
  else std::cout << K-id << std::endl;
}
0