結果

問題 No.247 線形計画問題もどき
ユーザー koba-e964koba-e964
提出日時 2015-07-21 22:07:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 56,116 KB
実行使用メモリ 42,772 KB
最終ジャッジ日時 2024-07-07 11:08:28
合計ジャッジ時間 1,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
30,080 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 35 ms
42,752 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,632 KB
testcase_12 AC 3 ms
5,632 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 4 ms
7,936 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 12 ms
27,648 KB
testcase_18 AC 5 ms
7,936 KB
testcase_19 AC 20 ms
42,748 KB
testcase_20 AC 21 ms
42,772 KB
testcase_21 AC 20 ms
42,752 KB
testcase_22 AC 20 ms
42,752 KB
testcase_23 AC 16 ms
38,272 KB
testcase_24 AC 16 ms
37,120 KB
testcase_25 AC 18 ms
39,296 KB
testcase_26 AC 6 ms
12,288 KB
testcase_27 AC 9 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;


const int N = 101, W = 100010;
const int inf = 2e7;

int dp[N][W];
int a[N];

int main(void){
  int c, n;
  cin >> c >> n;
  REP(i, 0, n) {
    cin >> a[i];
  }
  dp[0][0] = 0;
  REP(j, 1, W) {
    dp[0][j] = inf;
  }
  REP(i, 1, n + 1) {
    REP(j, 0, W) {
      if (j < a[i - 1]) {
	dp[i][j] = dp[i - 1][j];
      } else {
	dp[i][j] = min(dp[i - 1][j], dp[i][j - a[i - 1]] + 1);
      }
    }
  }
  int res = dp[n][c];
  cout << (res == inf ? -1 : res) << endl;
}
0