hdu1114

2024-06-14 19:38
文章标签 hdu1114

本文主要是介绍hdu1114,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

简单dp

#include <iostream>using namespace std;int dp[10005];int main()
{int v[505];int w[505];int e,f;int T;cin>>T;while (T--){cin>>e>>f;memset(v,0,sizeof(v));memset(w,0,sizeof(w));memset(dp,0,sizeof(dp));int n;cin>>n;for (int i=1;i<=n;i++)cin>>v[i]>>w[i];int sum=f-e;for (int i=1;i<=sum;i++){for (int t=1;t<=n;t++){if ((i>=w[t]&&dp[i]==0)||(i>=w[t]&&dp[i]>dp[i-w[t]]+v[t])){if (dp[i-w[t]]!=0||i-w[t]==0)dp[i]=dp[i-w[t]]+v[t];}}}/*for (int i=1;i<=sum;i++)cout<<dp[i]<<" ";cout<<endl;*/if (dp[sum]!=0)printf("The minimum amount of money in the piggy-bank is %d.\n",dp[sum]);elseprintf("This is impossible.\n");}
}


这篇关于hdu1114的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1061337

相关文章

HDU1114:Piggy-Bank(完全背包)

/*HDU1114 &&POJ1384:Piggy-Bank(完全背包)Problem DescriptionBefore ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from

动态规划--装满背包的最小价值--hdu1114 Piggy-bank

给定存钱罐重量f - e,n种硬币的价值p,重量w。求里面最少有多少钱。 1.最少价值,全部初始化为inf,dp[0] = 0,转移的时候求min 2.装满背包,看dp[f - e] 是否仍为inf,是的话,说明背包不满。 #include <iostream> #include <algorithm> #include <cstdio> using namespa