博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1276:Cash Machine(完全背包问题)
阅读量:5738 次
发布时间:2019-06-18

本文共 5304 字,大约阅读时间需要 17 分钟。

Cash Machine
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 38756   Accepted: 14102

Description

A Bank plans to install a machine for cash withdrawal. The machine is able to deliver appropriate @ bills for a requested cash amount. The machine uses exactly N distinct bill denominations, say Dk, k=1,N, and for each denomination Dk the machine has a supply of nk bills. For example, 
N=3, n1=10, D1=100, n2=4, D2=50, n3=5, D3=10 
means the machine has a supply of 10 bills of @100 each, 4 bills of @50 each, and 5 bills of @10 each. 
Call cash the requested amount of cash the machine should deliver and write a program that computes the maximum amount of cash less than or equal to cash that can be effectively delivered according to the available bill supply of the machine. 
Notes: 
@ is the symbol of the currency delivered by the machine. For instance, @ may stand for dollar, euro, pound etc. 

Input

The program input is from standard input. Each data set in the input stands for a particular transaction and has the format: 
cash N n1 D1 n2 D2 ... nN DN 
where 0 <= cash <= 100000 is the amount of cash requested, 0 <=N <= 10 is the number of bill denominations and 0 <= nk <= 1000 is the number of available bills for the Dk denomination, 1 <= Dk <= 1000, k=1,N. White spaces can occur freely between the numbers in the input. The input data are correct. 

Output

For each set of data the program prints the result to the standard output on a separate line as shown in the examples below. 

Sample Input

735 3  4 125  6 5  3 350633 4  500 30  6 100  1 5  0 1735 00 3  10 100  10 50  10 10

Sample Output

73563000

Hint

The first data set designates a transaction where the amount of cash requested is @735. The machine contains 3 bill denominations: 4 bills of @125, 6 bills of @5, and 3 bills of @350. The machine can deliver the exact amount of requested cash. 
In the second case the bill supply of the machine does not fit the exact amount of cash requested. The maximum cash that can be delivered is @630. Notice that there can be several possibilities to combine the bills in the machine for matching the delivered cash. 
In the third case the machine is empty and no cash is delivered. In the fourth case the amount of cash requested is @0 and, therefore, the machine delivers no cash.

Source

超时

#include
#include
#include
using namespace std;const int maxn = 10 + 5,maxc = 100000 + 5;int dp[maxn][maxc];int dk[maxn],nk[maxn];int main(){ int cash,n; while(scanf("%d %d",&cash,&n) != EOF){ memset(dp,0,sizeof(dp)); for(int i = 0;i < n;i++){ scanf("%d %d",&nk[i],&dk[i]); } for(int i = 0;i < n;i++){ for(int j = 0;j <= cash;j++){ for(int k = 0;k <= nk[i] && k*dk[i] <= j;k++){ dp[i+1][j] = max(dp[i+1][j],dp[i][j-k*dk[i]] + k*dk[i]); } } } printf("%d\n",dp[n][cash]); } return 0;}

不是用一个少一个,只是一种情况,应分别记录。

#include
#include
#include
using namespace std;const int maxn = 10 + 5,maxc = 100000 + 5;int dp[maxn][maxc];int dk[maxn],nk[maxn];int main(){ int cash,n; while(scanf("%d %d",&cash,&n) != EOF){ memset(dp,0,sizeof(dp)); for(int i = 0;i < n;i++){ scanf("%d %d",&nk[i],&dk[i]); } for(int i = 0;i < n;i++){ for(int j = dk[i];j <= cash;j++){ if(nk[i] && dp[i+1][j] < dp[i+1][j-dk[i]] + dk[i]){ dp[i+1][j] = dp[i+1][j-dk[i]] + dk[i]; nk[i]--; } } } printf("%d\n",dp[n][cash]); } return 0;}
内存超出。
#include
#include
#include
using namespace std;const int maxn = 10 + 5,maxc = 100000 + 5;int dp[maxn][maxc],num[maxn][maxc];int dk[maxn],nk[maxn];;int main(){ int cash,n; while(scanf("%d %d",&cash,&n) != EOF){ memset(dp,0,sizeof(dp)); memset(num,0,sizeof(num)); for(int i = 0;i < n;i++){ scanf("%d %d",&nk[i],&dk[i]); } for(int i = 0;i < n;i++){ for(int j = dk[i];j <= cash;j++){ dp[i+1][j] = dp[i][j]; if(dp[i+1][j] < dp[i+1][j-dk[i]] + dk[i] && num[i+1][j-dk[i]] < nk[i]){ dp[i+1][j] = dp[i+1][j-dk[i]] + dk[i]; num[i+1][j] = num[i+1][j-dk[i]] + 1; } } } printf("%d\n",dp[n][cash]); } return 0;}
AC
#include
#include
#include
using namespace std;const int maxn = 10 + 5,maxc = 100000 + 5;int dp[maxc],num[maxc];int dk[maxn],nk[maxn];int main(){ int cash,n; while(scanf("%d %d",&cash,&n) != EOF){ memset(dp,0,sizeof(dp)); for(int i = 0;i < n;i++){ scanf("%d %d",&nk[i],&dk[i]); } for(int i = 0;i < n;i++){ memset(num,0,sizeof(num)); for(int j = dk[i];j <= cash;j++){ if(dp[j] < dp[j-dk[i]] + dk[i] && num[j-dk[i]] < nk[i]){ dp[j] = dp[j-dk[i]] + dk[i]; num[j] = num[j-dk[i]] + 1; } } } printf("%d\n",dp[cash]); } return 0;}

转载于:https://www.cnblogs.com/JingwangLi/p/10202759.html

你可能感兴趣的文章
BZOJ - 3578: GTY的人类基因组计划2
查看>>
理解WebKit和Chromium(电子书)
查看>>
爱——无题
查看>>
分布式服务框架原来与实践 读书笔记一
查看>>
Aho-Corasick automation-KMP
查看>>
【http】post和get请求的区别
查看>>
/etc/profile
查看>>
TFS强制撤销某个工作区的文件签出记录
查看>>
2.1 sikuli 中编程运行
查看>>
python魔法函数(二)之__getitem__、__len__、__iter__
查看>>
EL表达式无法显示Model中的数据
查看>>
ps6-工具的基础使用
查看>>
关于CefSharp.WinForms的学习
查看>>
灵活运用 SQL SERVER FOR XML PATH
查看>>
es 加磁盘扩容
查看>>
使用Azcopy在Azure上进行HBase的冷热备份还原
查看>>
linux下使用过的命令总结(未整理完)
查看>>
ES6的一些文章
查看>>
LeetCode 198, 213 House Robber
查看>>
New Year Permutation(Floyd+并查集)
查看>>