結果

問題 No.5 数字のブロック
ユーザー newlife171128newlife171128
提出日時 2019-05-10 06:14:00
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 360 ms / 5,000 ms
コード長 866 bytes
コンパイル時間 1,279 ms
コンパイル使用メモリ 159,688 KB
実行使用メモリ 394,560 KB
最終ジャッジ日時 2024-07-02 00:56:27
合計ジャッジ時間 10,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
394,532 KB
testcase_01 AC 200 ms
394,328 KB
testcase_02 AC 223 ms
394,512 KB
testcase_03 AC 277 ms
394,516 KB
testcase_04 AC 204 ms
394,468 KB
testcase_05 AC 296 ms
394,444 KB
testcase_06 AC 238 ms
394,488 KB
testcase_07 AC 252 ms
394,516 KB
testcase_08 AC 233 ms
394,408 KB
testcase_09 AC 213 ms
394,500 KB
testcase_10 AC 249 ms
394,440 KB
testcase_11 AC 214 ms
394,392 KB
testcase_12 AC 275 ms
394,544 KB
testcase_13 AC 250 ms
394,460 KB
testcase_14 AC 202 ms
394,432 KB
testcase_15 AC 200 ms
394,420 KB
testcase_16 AC 284 ms
394,508 KB
testcase_17 AC 329 ms
394,400 KB
testcase_18 AC 272 ms
394,492 KB
testcase_19 AC 360 ms
394,356 KB
testcase_20 AC 203 ms
394,512 KB
testcase_21 AC 201 ms
394,372 KB
testcase_22 AC 201 ms
394,352 KB
testcase_23 AC 200 ms
394,476 KB
testcase_24 AC 200 ms
394,560 KB
testcase_25 AC 207 ms
394,364 KB
testcase_26 AC 201 ms
394,372 KB
testcase_27 AC 200 ms
394,532 KB
testcase_28 AC 200 ms
394,432 KB
testcase_29 AC 203 ms
394,360 KB
testcase_30 AC 206 ms
394,512 KB
testcase_31 AC 202 ms
394,356 KB
testcase_32 AC 202 ms
394,440 KB
testcase_33 AC 203 ms
394,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

const long long INF = 1LL << 60;
#define MOD 1000000007;

typedef long long ll;

#define writeln(n) cout<<n<<endl;
#define rep(i,n) for(int i=0; i<n; i++);

typedef pair<float, float> P;

typedef pair<string, int> Psi;

int d[10010][10010];
int main() {


	int l;
	cin>>l;

	int n;
	cin>>n;

	for(int i=0; i<=10000; i++){
		for(int j=0; j<=10000; j++){
			d[i][j] =-1;
		}
	}

	d[0][0] =0;

	for(int i=1; i<=n; i++){

		int tmp ;
		cin>>tmp;

		for(int j=0; j<=l; j++){




			if(d[i-1][j] !=-1){

				d[i][j] = max(d[i][j],d[i-1][j]);
			if(j+tmp<=l){


				d[i][j+tmp] = max(d[i][j+tmp],d[i-1][j]+1);


			}

			}

		}
	}

/*	for(int i=0; i<=n; i++){
		for(int j=0; j<=l; j++){
		cout<<j<<":"<<d[i][j]<<" ";
		}
		cout<<endl;
	}*/
	int ans =0;
	for(int i=0; i<=l; i++){
		ans = max(ans,d[n][i]);
	}
	writeln(ans);

}

0