結果

問題 No.393 2本の竹
ユーザー はまやんはまやんはまやんはまやん
提出日時 2016-07-13 14:50:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 1,000 ms
コード長 849 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 169,244 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-08 05:48:21
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 81 ms
26,496 KB
testcase_10 AC 19 ms
9,600 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 33 ms
13,184 KB
testcase_13 AC 19 ms
8,448 KB
testcase_14 AC 13 ms
7,296 KB
testcase_15 AC 12 ms
10,368 KB
testcase_16 AC 26 ms
17,024 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 38 ms
13,184 KB
testcase_23 AC 19 ms
10,112 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 71 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)


int d;
int n1, n2, m;
int A[61];
//-----------------------------------------------------------------
int dp[61][101010];

void solve() {
	scanf("%d %d %d", &n1, &n2, &m);
	rep(i, 0, m) scanf("%d", &A[i]);
	sort(A, A + m);

	rep(i, 0, m + 1) rep(j, 0, n1 + 1) dp[i][j] = -1;
	dp[0][n1] = 0;

	int sum = 0;
	int ans = 0;
	rep(i, 0, m) {
		
		rep(j, 0, n1 + 1) if (0 <= dp[i][j]) {
			ans = max(ans, dp[i][j]);

			int jj = n2 - (sum - (n1 - j));

			if (A[i] <= j) dp[i + 1][j - A[i]] = dp[i][j] + 1;
			if (A[i] <= jj) dp[i + 1][j] = dp[i][j] + 1;
		}
		sum += A[i];
	}
	rep(i, 0, n1 + 1) ans = max(ans, dp[m][i]);

	cout << ans << endl;
}
//-----------------------------------------------------------------
int main() {
	scanf("%d", &d);
	rep(i, 0, d) solve();
}
0