結果

問題 No.393 2本の竹
ユーザー しらっ亭しらっ亭
提出日時 2016-07-12 15:48:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,495 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 171,856 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-15 01:06:50
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define _p(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define _overload3(_1,_2,_3,name,...) name
#define _rep2(i,n) _rep3(i,0,n)
#define _rep3(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,_rep3,_rep2,)(__VA_ARGS__)
#define _rrep2(i,n) _rrep3(i,0,n)
#define _rrep3(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__)
#define ALL(x) (x).begin(), (x).end()
#define BIT(n) (1LL<<(n))
#define SZ(x) ((int)(x).size())
#define fst first
#define snd second
typedef vector<int> vi;typedef vector<vi> vvi;typedef pair<int,int> pii;typedef vector<pii> vpii;
typedef long long ll;

template<class T> inline bool amax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }

int dp[61][101];

void Main() {
  int N1, N2, M;
  scanf("%d%d%d", &N1, &N2, &M);
  vi A(M);
  rep(i, M) scanf("%d", &A[i]);

  sort(ALL(A));

  memset(dp, 0xff, sizeof(dp));
  dp[0][N1] = N2;
  rep(i, M) {
    bool ok = 0;
    rep(j, N1+1) if (dp[i][j] >= 0) {
      //_p("i:%d, a:%d, j:%d, k:%d\n", i,A[i],j,dp[i][j]);
      if (dp[i][j] >= A[i]) {
        dp[i+1][j] = dp[i][j] - A[i];
        ok = 1;
      }
      if (j >= A[i]) {
        dp[i+1][j - A[i]] = dp[i][j];
        ok = 1;
      }
    }
    if (!ok) {
      _p("%d\n", i);
      return;
    }
  }
  _p("%d\n", M);
}
int main() {
  int T;
  scanf("%d", &T);
  while (T--) Main();
  return 0;
}
0