結果

問題 No.393 2本の竹
ユーザー togari_takamototogari_takamoto
提出日時 2016-07-12 07:09:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 1,000 ms
コード長 865 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 174,000 KB
実行使用メモリ 45,992 KB
最終ジャッジ日時 2024-04-25 18:12:48
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 224 ms
43,868 KB
testcase_10 AC 64 ms
16,092 KB
testcase_11 AC 81 ms
16,648 KB
testcase_12 AC 87 ms
18,804 KB
testcase_13 AC 57 ms
12,508 KB
testcase_14 AC 40 ms
10,676 KB
testcase_15 AC 24 ms
17,024 KB
testcase_16 AC 69 ms
27,356 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 108 ms
22,752 KB
testcase_23 AC 56 ms
16,228 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 192 ms
45,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vl = vector<ll>;
using vvl = vector<vl>;
#define REP(i,n) for(ll i = 0; i < (n); ++i)
#define FOR(i,s,e) for (ll i = s; i < (ll)e; i++)
#define ALL(c) (c).begin(), (c).end()

int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	ll d; cin >> d;
	REP(_, d) {
		ll n1, n2, m; cin >> n1 >> n2 >> m;
		vl a(m); REP(i, m) cin >> a[i];
		sort(ALL(a));
		vvl dp(m + 1, vl(n1 + 1, n2 + 1));
		dp[0][0] = 0; // dp[i人までで][n1のうちk利用するときの] = n2の利用した最小の長さ
		FOR(i, 1, m + 1) REP(k, n1 + 1) {
			if(k - a[i - 1] >= 0) dp[i][k] = min(dp[i][k], dp[i - 1][k - a[i - 1]]);
			dp[i][k] = min(dp[i][k], dp[i - 1][k] + a[i - 1]);
		}

		ll ans = 0;
		REP(i, m + 1) REP(j, n1 + 1) if (dp[i][j] <= n2) ans = max(ans, i);
		cout << ans << endl;
	}
	return 0;
}
0