解题报告:hdu1248寒冰王座 - 完全背包模板

时间:2022-11-29 23:57:29

2017-09-03 16:16:38

writer:pprp

完全背包问题:从左向右进行扫描,用一维阵列进行分析

代码如下:

/*
@theme:hdu1248 寒冰王座
@writer:pprp
@begin:16:00
@end:16:14
@declare:完全背包问题
@error:方向问题,这次是从左向右进行扫描
@date:2017/9/3
*/ #include <bits/stdc++.h> using namespace std;
const int maxn = ;
int dp[maxn];
int w[] = {,,,};
int N; int main()
{
//freopen("in.txt","r",stdin);
int cas;
cin >> cas;
while(cas--)
{
memset(dp,,sizeof(dp));
cin >> N;
for(int i = ; i <= ; i++)
{
for(int j = ; j <= N; j++)//error
{
if(j >= w[i])//error
dp[j] = max(dp[j],dp[j-w[i]] + w[i]);
}
}
cout << N - dp[N] << endl;
}
return ;
}

解题报告:hdu1248寒冰王座 - 完全背包模板