博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 三部曲 Cash Machine
阅读量:5911 次
发布时间:2019-06-19

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

Problem 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 350
633 4 500 30 6 100 1 5 0 1
735 0
0 3 10 100 10 50 10 10
 
Sample Output
735
630
0
0
********************************************************************************************
多重背包(要压缩)
********************************************************************************************
1 #include
2 #include
3 #include
4 #include
5 #include
6 using namespace std; 7 int dp[100005]; 8 int n,m,i,j,k; 9 int num[1005];10 int a[1005];11 void zeropack(int cost,int val)//01背包12 {13 for(int it=n;it>=cost;it--)14 dp[it]=max(dp[it],dp[it-cost]+val);15 }16 void completepack(int cost,int val)//完全背包17 {18 for(int it=cost;it<=n;it++)19 dp[it]=max(dp[it],dp[it-cost]+val);20 }21 void multipack(int cost,int val,int amount)//多重背包(其实是完全背包和01背包的组合)注意下面的写法22 {23 if(val*amount>n)24 completepack(cost,val);25 else26 {27 int k=1;28 while(k
View Code

坚持!!!!!!!!!!

转载于:https://www.cnblogs.com/sdau--codeants/p/3295317.html

你可能感兴趣的文章
java的折半查询
查看>>
Linux(RHEL7.0)下安装nginx-1.10.2
查看>>
Java NIO中的通道Channel(二)分散/聚集 Scatter/Gather
查看>>
formValidator的一些验证实例
查看>>
idea 去掉never used 提示
查看>>
Palindrome Partitioning
查看>>
一年多了,该回来了……
查看>>
四则运算
查看>>
Qt5 for Android: incompatible ABI
查看>>
zookeeper学习
查看>>
class类名的管理
查看>>
LeetCode:Rectangle Area
查看>>
文本查询
查看>>
查看帐号授权信息
查看>>
小程序(四):模板
查看>>
【转】Java - printf
查看>>
jquery获取元素到屏幕底的可视距离
查看>>
ENDNOTE使用方法(转发)
查看>>
计算机数制和运算的一点总结.
查看>>
UML系列 (五) 为什么要用UML建模之建模的重要性
查看>>