博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ1276 Cash Machine
阅读量:7255 次
发布时间:2019-06-29

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

 

Time Limit: 1000MS   Memory Limit: 10000KB   64bit IO Format: %lld & %llu

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

 

多重背包 单调队列优化

 

1 /*By SilverN*/ 2 #include
3 #include
4 #include
5 #include
6 #include
7 #define LL long long 8 using namespace std; 9 const int mxn=15;10 int read(){11 int x=0,f=1;char ch=getchar();12 while(ch<'0' || ch>'9'){
if(ch=='-')f=-1;ch=getchar();}13 while(ch>='0' && ch<='9'){x=x*10+ch-'0';ch=getchar();}14 return x*f;15 }16 int lim,n;17 int m[mxn],v[mxn];18 bool f[100010];19 int q[100010];20 int main(){21 int i,j;22 while(scanf("%d%d",&lim,&n)!=EOF){23 memset(f,0,sizeof f);24 for(i=1;i<=n;++i){m[i]=read();v[i]=read();}25 f[0]=1;26 for(i=1;i<=n;++i){27 if(m[i]==1){28 for(j=lim;j>=v[i];j--)29 f[j]=f[j]||f[j-v[i]];30 }31 else{32 for(int k=0;k
lim)break;34 int hd=1,tl=0;int smm=0;35 for(j=k;j<=lim;j+=v[i]){36 q[++tl]=f[j];37 smm+=f[j];38 if(tl-hd>m[i])smm-=q[hd++];39 f[j]=f[j]||smm;40 }41 }42 }43 }44 for(i=lim;i>=0;--i)if(f[i]){45 printf("%d\n",i);break;46 }47 }48 }

 

转载于:https://www.cnblogs.com/SilverNebula/p/6013919.html

你可能感兴趣的文章
WorkStream构想
查看>>
C#正则表达式验证
查看>>
二维数组函数参数传递 –转
查看>>
c# 自定义解析JSON字符串数据
查看>>
spring自定义标签
查看>>
cocos2d-x的action
查看>>
window环境下安装和卸载服务【转】
查看>>
搭建go开发环境
查看>>
HDU-1241Oil Deposits
查看>>
2017年05月10日记一次微项目投产 | 安卓版微信内置浏览器不能解析gzip压缩过的mp4视频的问题...
查看>>
Java基础类库简介
查看>>
微信端解决a标签链接 失效的问题
查看>>
[2]递归的四条基本法则
查看>>
数组与指针的区别
查看>>
C# versus C++ versus Java performance comparison
查看>>
hdu3625 ( 第一类斯特灵数 )
查看>>
根据第三方库spire.pdf使用指定打印机打印pdf文件
查看>>
利用PHPMailer 来完成PHP的邮件发送
查看>>
PHP计算百度地图两个GPS坐标之间距离的方法
查看>>
PHP实现大转盘抽奖算法
查看>>