結果

問題 No.617 Nafmo、買い出しに行く
ユーザー reitetsuohreitetsuoh
提出日時 2017-12-27 15:31:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 63,020 KB
実行使用メモリ 175,088 KB
最終ジャッジ日時 2024-12-21 07:50:23
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
16,384 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 21 ms
21,504 KB
testcase_03 AC 48 ms
51,072 KB
testcase_04 AC 6 ms
6,912 KB
testcase_05 AC 70 ms
86,828 KB
testcase_06 AC 132 ms
175,028 KB
testcase_07 AC 133 ms
175,088 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 99 ms
125,724 KB
testcase_11 AC 114 ms
151,328 KB
testcase_12 AC 72 ms
82,336 KB
testcase_13 AC 52 ms
50,408 KB
testcase_14 AC 61 ms
65,624 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int DynamicPlanMethod(const int MAX_N,const int MAX_W,vector<int> &weight,const vector<int> &value,const int max_weight)
{
	//ダイナミック計画法で解を求める
	// DPテーブル
	// dp[i][j]はi番目以降の品物から重さの和がj以下なるように選んだときの価値の和の最大値を表す。
	vector<vector<int>> dp(MAX_N+1,vector<int>(MAX_W+1));
	for (int j = 0; j <= MAX_W; j++) {
		dp[MAX_N][j] = 0;
	}
	for (int i = MAX_N - 1; i >= 0; i--) {
		for (int j = 0; j <= max_weight; j++) {
			if (j < weight[i]){
				dp[i][j] = dp[i + 1][j];
			}else{
				dp[i][j] = max(dp[i + 1][j], dp[i + 1][j - weight[i]] + value[i]);
			}
		}
	}
	return dp[0][max_weight];
}
int main(int argc, char* argv[])
{
	int N,K;
	cin>>N>>K;
	vector<int> weight(N),value(N,1);
	int i;
	for (i=0;i<N;i++){
		cin>>weight[i];
		value[i]=weight[i];
	}
	int w=DynamicPlanMethod(N,K,weight,value,K);
	cout<<w<<endl;
	return 0;
}
0