結果

問題 No.5 数字のブロック
ユーザー opqopq_opqopq_
提出日時 2015-04-30 10:21:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 34,268 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 22:40:58
合計ジャッジ時間 1,802 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d%d", &L, &N);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:14:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         for (int i = 0; i < N; i++) scanf("%d", W + i);
      |                                     ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
using namespace std;

#define L_MAX 10000
#define N_MAX 10000

int L, N;
int W[N_MAX];
int dp[L_MAX + 1];

int main() {
	scanf("%d%d", &L, &N);
	for (int i = 0; i < N; i++) scanf("%d", W + i);
	
	for (int i = 0; i < N; i++) {
		for (int j = L; W[i] <= j; j--) {
			dp[j] = max(dp[j], dp[j - W[i]] + 1);
		}
	}
	
	int res = 0;
	for (int i = 1; i <= L; i++) res = max(res, dp[i]);
	
	printf("%d\n", res);
	
	return 0;
}

0