結果

問題 No.393 2本の竹
ユーザー koba-e964koba-e964
提出日時 2016-12-07 14:31:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 99 ms / 1,000 ms
コード長 1,376 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 91,336 KB
実行使用メモリ 27,216 KB
最終ジャッジ日時 2024-05-06 01:27:50
合計ジャッジ時間 2,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
21,888 KB
testcase_01 AC 15 ms
7,424 KB
testcase_02 AC 45 ms
23,296 KB
testcase_03 AC 35 ms
13,184 KB
testcase_04 AC 21 ms
12,416 KB
testcase_05 AC 24 ms
10,496 KB
testcase_06 AC 17 ms
8,576 KB
testcase_07 AC 35 ms
12,032 KB
testcase_08 AC 63 ms
17,920 KB
testcase_09 AC 99 ms
26,112 KB
testcase_10 AC 32 ms
10,112 KB
testcase_11 AC 49 ms
13,440 KB
testcase_12 AC 58 ms
15,232 KB
testcase_13 AC 43 ms
12,672 KB
testcase_14 AC 36 ms
12,032 KB
testcase_15 AC 8 ms
8,832 KB
testcase_16 AC 13 ms
8,448 KB
testcase_17 AC 40 ms
17,920 KB
testcase_18 AC 23 ms
12,416 KB
testcase_19 AC 10 ms
7,808 KB
testcase_20 AC 17 ms
8,192 KB
testcase_21 AC 35 ms
19,456 KB
testcase_22 AC 55 ms
13,952 KB
testcase_23 AC 32 ms
12,800 KB
testcase_24 AC 23 ms
9,344 KB
testcase_25 AC 17 ms
7,808 KB
testcase_26 AC 13 ms
8,192 KB
testcase_27 AC 98 ms
27,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

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

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;
const ll mod = 1e9 + 7;

const int M = 61;
const int W = 100100;
int dp[M][W];

int solve(int n1, int n2, const VI &a) {
  int m = a.size();
  REP(i, 0, W) {
    dp[0][i] = 0;
  }
  dp[0][0] = 1;
  int tot = 0;
  REP(i, 0, m) {
    tot += a[i];
    REP(j, 0, W) { dp[i + 1][j] = dp[i][j]; }
    REP(j, 0, W) {
      if (j >= a[i]) {
	dp[i + 1][j] |= dp[i][j - a[i]];
      }
    }
    bool ok = 0;
    REP(j, 0, n1 + 1) {
      if (dp[i + 1][j] && tot - j <= n2) {
	ok = 1;
      }
    }
    if (not ok) {
      return i;
    }
  }
  return m;
}

int main(void){
  int d;
  cin >> d;
  while(d--) {
    int n1, n2;
    cin >> n1 >> n2;
    int m;
    cin >> m;
    VI a(m);
    REP(i, 0, m) { cin >> a[i]; }
    sort(a.begin(), a.end());
    cout << solve(n1, n2, a) << endl;
  }
}
0