結果

問題 No.617 Nafmo、買い出しに行く
ユーザー GBGB
提出日時 2018-11-09 02:42:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 65,392 KB
実行使用メモリ 393,836 KB
最終ジャッジ日時 2024-11-21 05:01:20
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
37,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 35 ms
48,240 KB
testcase_03 AC 73 ms
114,780 KB
testcase_04 AC 13 ms
13,696 KB
testcase_05 AC 115 ms
197,004 KB
testcase_06 AC 219 ms
393,836 KB
testcase_07 AC 214 ms
393,808 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 159 ms
281,760 KB
testcase_11 AC 185 ms
340,216 KB
testcase_12 AC 110 ms
183,168 KB
testcase_13 AC 73 ms
110,776 KB
testcase_14 AC 89 ms
145,028 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

typedef long long ll;

int main() {

	int n = 0,k=0;
	cin >> n>>k;
	vector<ll> weight(n+5,0);
	for (int i = 0;i < n;i++) cin>>weight[i];

	vector<ll> *dp = new vector<ll>[n+5];
	for (int i = 0;i < n + 5;i++)dp[i].resize(k + 5,0);
	for (int i = 0; i < n; ++i) {
		for (int w = 0; w <= k; ++w) {
			if (w >= weight[i]) dp[i + 1][w] = max(dp[i][w - weight[i]] + weight[i], dp[i][w]);
			else dp[i + 1][w] = dp[i][w];
		}
	}

	cout << dp[n][k] << endl;

	delete[] dp;

	return 0;
}
0