Cash Machine
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 38986   Accepted: 14186

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

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

 

题意:

给出总的钱币额V,给出n种币值和数目,问最接近V的的组合?

分析:

多重背包的模板题,多重背包问题是: 
有N种物品和一个容量为V的背包。第i种物品最多有num[i]件可用,每件费用是c[i],价值是w[i]。求解将哪些物品装入背包可使这些物品的费用总和不超过背包容量,且价值总和最大。 
状态转移为:

F[i,v] = max{F[i−1,v−k∗Ci] + k∗Wi |0 ≤ k ≤ Mi}

对于本题,币值既是费用也是价值。

#include<iostream>
#include<algorithm>
#include<stack>
#include<cmath>
#include<string>
#include<cstring>
#include<cstdio>
#include<vector>
#include<deque>
using namespace std;
const int mx = ;
const int mxw = ;
deque<int>deqv, deq;
int w[mx], m[mx], dp[mxw]; int solve(int maxw, int n)
{
memset(dp, , sizeof(dp));
int i, k, j, val;
for (i = ; i <= n; ++i)
for (j = ; j < w[i]; j++)///枚举a=j%w[i]
{
while (!deqv.empty())//每枚举一次进行一次单调队列求值
{
deqv.pop_front();
deq.pop_front();
}
for (k = ; k * w[i] + j <= maxw; k++)
{
val = dp[k * w[i] + j] - k * w[i];///划归为可重复使用的值
while (!deqv.empty() && deqv.back() <= val)///保证deque的队首是最大的
{
deqv.pop_back();
deq.pop_back();
} deq.push_back(k);
deqv.push_back(val);
dp[k * w[i] + j] =deqv.front() + k * w[i];///从双端队列的头部取出最大值
if (deq.front() == k - m[i])///这一头部已无法使用
{
deq.pop_front();
deqv.pop_front();
} }
}
return dp[maxw];
} int main()
{
int maxw, n, i;
while (~scanf("%d%d", &maxw, &n))
{
for (i = ; i <= n; i++)
scanf("%d%d", &m[i], &w[i]);
printf("%d\n", solve(maxw, n));
}
return ;
}

最新文章

  1. C 语言中 malloc、calloc、realloc 和free 函数的使用方法
  2. [转]PHP的执行流程,PHP扩展加载过程
  3. ListView addHeaderView 对 position 的影响
  4. 【读书笔记】iOS-查看一个软件ipa包的内容
  5. 有用的一些web网站
  6. jquery获取css color 值返回RGB
  7. poj 3130 How I Mathematician Wonder What You Are!
  8. 关于在C#中实现AOP 拦截编程模式的新的探索
  9. xcode新建项目介绍
  10. 勾选Create git respository的作用
  11. 庞玉栋:浅谈seo优化对于网站建设的重要性
  12. Django rest framework源码分析(4)----版本
  13. ES6(正则扩展)
  14. 简单几步用纯CSS3实现3D翻转效果
  15. vs 2017 vs code
  16. 关于A2C算法
  17. Python爬虫入门教程 13-100 斗图啦表情包多线程爬取
  18. JarvisOJ Basic 握手包
  19. Git常用的操作
  20. 3.1.4 Spring的事务管理

热门文章

  1. Android 下的usb框架及功能点【转】
  2. .NET CORE 动态调用泛型方法
  3. docker官方镜像库 搭建 jekins
  4. ZooKeeper-安装和运行
  5. Redis缓存集群方案
  6. 如何手动添加 WIFI 网络步骤
  7. 去除编译警告@SuppressWarnings注解用法详解(转)
  8. 使用ES6的Promise 解决回调函数。
  9. Java企业微信开发_15_查询企业微信域名对应的所有ip
  10. SpringBoot_06_使用Swagger2构建强大的RESTful API文档