結果

問題 No.393 2本の竹
ユーザー femtofemto
提出日時 2016-07-12 01:41:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 894 bytes
コンパイル時間 1,198 ms
コンパイル使用メモリ 69,852 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-11-08 05:37:38
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
27,136 KB
testcase_01 AC 37 ms
27,136 KB
testcase_02 AC 40 ms
27,136 KB
testcase_03 AC 41 ms
27,136 KB
testcase_04 AC 37 ms
27,136 KB
testcase_05 AC 37 ms
27,136 KB
testcase_06 AC 41 ms
27,136 KB
testcase_07 AC 36 ms
27,136 KB
testcase_08 AC 38 ms
27,136 KB
testcase_09 AC 94 ms
27,008 KB
testcase_10 AC 49 ms
27,136 KB
testcase_11 AC 58 ms
27,136 KB
testcase_12 AC 58 ms
27,264 KB
testcase_13 AC 52 ms
27,136 KB
testcase_14 AC 41 ms
27,136 KB
testcase_15 AC 25 ms
27,008 KB
testcase_16 AC 40 ms
27,136 KB
testcase_17 AC 37 ms
27,008 KB
testcase_18 AC 38 ms
27,136 KB
testcase_19 AC 31 ms
27,136 KB
testcase_20 AC 37 ms
27,136 KB
testcase_21 AC 37 ms
27,008 KB
testcase_22 AC 65 ms
27,136 KB
testcase_23 AC 49 ms
27,136 KB
testcase_24 AC 37 ms
27,136 KB
testcase_25 AC 35 ms
27,008 KB
testcase_26 AC 35 ms
27,264 KB
testcase_27 AC 78 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
using namespace std;

int a[60];
int s[60];
int dp[61][100010];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int d;
	cin >> d;
	while(d--) {
		int n1, n2, m;
		cin >> n1 >> n2 >> m;
		if(n1 > n2) swap(n1, n2);

		for(int i = 0; i < m; i++) {
			cin >> a[i];
		}
		sort(a, a + m);
		for(int i = 1; i < m; i++) {
			s[i] = s[i - 1] + a[i - 1];
		}

		memset(dp, -1, sizeof dp);
		dp[0][0] = 0;
		for(int i = 0; i < m; i++) {
			for(int j = 0; j <= n1; j++) if(dp[i][j] != -1) {
				dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
				if(j + a[i] <= n1)
					dp[i + 1][j + a[i]] = max(dp[i + 1][j + a[i]], dp[i][j] + 1);
				if(s[i] - j + a[i] <= n2)
					dp[i + 1][j] = max(dp[i + 1][j], dp[i][j] + 1);
			}
		}
		cout << *max_element(dp[m], dp[m] + n1 + 1) << endl;
	}
}
0