結果

問題 No.5 数字のブロック
ユーザー めうめう🎒めうめう🎒
提出日時 2016-01-16 11:06:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,373 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 72,892 KB
実行使用メモリ 395,396 KB
最終ジャッジ日時 2024-11-18 08:12:29
合計ジャッジ時間 25,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 241 ms
394,748 KB
testcase_01 AC 212 ms
394,720 KB
testcase_02 AC 211 ms
394,808 KB
testcase_03 AC 1,642 ms
395,164 KB
testcase_04 AC 182 ms
395,052 KB
testcase_05 AC 1,889 ms
395,396 KB
testcase_06 AC 731 ms
395,148 KB
testcase_07 AC 1,046 ms
395,080 KB
testcase_08 AC 663 ms
395,232 KB
testcase_09 AC 323 ms
395,028 KB
testcase_10 AC 975 ms
395,328 KB
testcase_11 AC 370 ms
395,096 KB
testcase_12 AC 1,520 ms
395,264 KB
testcase_13 AC 1,006 ms
395,308 KB
testcase_14 AC 210 ms
394,776 KB
testcase_15 AC 171 ms
394,840 KB
testcase_16 AC 1,620 ms
395,392 KB
testcase_17 AC 2,639 ms
395,308 KB
testcase_18 AC 1,387 ms
395,148 KB
testcase_19 AC 3,373 ms
395,348 KB
testcase_20 AC 170 ms
394,808 KB
testcase_21 AC 172 ms
394,712 KB
testcase_22 AC 170 ms
394,720 KB
testcase_23 AC 171 ms
394,720 KB
testcase_24 AC 172 ms
394,832 KB
testcase_25 AC 256 ms
394,820 KB
testcase_26 AC 172 ms
394,728 KB
testcase_27 AC 173 ms
394,704 KB
testcase_28 AC 171 ms
394,688 KB
testcase_29 AC 179 ms
395,096 KB
testcase_30 AC 223 ms
395,008 KB
testcase_31 AC 170 ms
394,792 KB
testcase_32 AC 170 ms
394,720 KB
testcase_33 AC 170 ms
394,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <math.h>
#include <stack>
#include <set>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <map>
#include <cstdio>
#include <vector>
using namespace std;

#define INF (1 << 30)
#define INFLL (1LL << 60)

int l,n,w[10001];
int memo[10010][10010];

int saiki(int nokori,int now){
	if(memo[nokori][now] != INF) return memo[nokori][now];
	if(now == n) return 0;
	int a = 0,b = 0;
	if(nokori - w[now] >= 0) a += saiki(nokori - w[now],now + 1) + 1;
	b += saiki(nokori,now + 1);
	return memo[nokori][now] = max(a,b);
}

int main() {
	for(int i = 0;i < 10010;i++){
		for(int j = 0;j < 10010;j++){
			memo[i][j] = INF;
		}
	}
	cin >> l >> n;
	for(int i = 0;i < n;i++){
		cin >> w[i];
	}
	cout << saiki(l,0) << endl;
	return 0;
}
0