結果

問題 No.914 Omiyage
ユーザー 👑 CleyLCleyL
提出日時 2020-01-29 02:02:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 564 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 72,264 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-15 16:32:24
合計ジャッジ時間 1,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
vector<vector<int> > A(11,vector<int>(11));
int n,m,k;
int memo[11][11];
int DFS(int nw,int c){
  if(memo[nw][c]){
    return memo[nw][c];
  }
  if(c > k){return -1;};
  if(nw == n){
    return c;
  }
  int ans = -1;
  for(int i = 0; m > i; i++){
    ans = max(ans,DFS(nw+1,c+A[nw][i]));
  }
  memo[nw][c] = ans;
  return ans;
}

int main(){
  cin>>n>>m>>k;
  for(int i = 0; n > i; i++){
    for(int j = 0; m > j; j++){
      cin>>A[i][j];
    }
  }
  int z = DFS(0,0);
  cout << (z==-1?-1:k-z) << endl;
}
0