(完全背包) Piggy-Bank (hdu 1114)
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std; #define met(a,b) (memset(a,b,sizeof(a)))
#define N 1100000
#define INF 0xffffff int v[], w[], dp[N]; int main()
{
int T;
scanf("%d", &T);
while(T--)
{
int i, j, n, w1, w2, W; met(v, );
met(w, ); scanf("%d%d", &w1, &w2);
W = w2-w1; for(i=; i<=W; i++)
dp[i] = INF; scanf("%d", &n); for(i=; i<=n; i++)
scanf("%d%d", &v[i], &w[i]); dp[] = ;
for(i=; i<=n; i++)
{
for(j=w[i]; j<=W; j++)
{
dp[j] = min(dp[j], dp[j-w[i]]+v[i]);
}
} if(dp[W]==INF) printf("This is impossible.\n");
else printf("The minimum amount of money in the piggy-bank is %d.\n", dp[W]); }
return ;
}
Description
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
Input
Output
Sample Input
Sample Output
The minimum amount of money in the piggy-bank is 100.
This is impossible.
(完全背包) Piggy-Bank (hdu 1114)的更多相关文章
- HDOJ(HDU).1114 Piggy-Bank (DP 完全背包)
		HDOJ(HDU).1114 Piggy-Bank (DP 完全背包) 题意分析 裸的完全背包 代码总览 #include <iostream> #include <cstdio&g ... 
- HDU 1114 完全背包  HDU 2191 多重背包
		HDU 1114 Piggy-Bank 完全背包问题. 想想我们01背包是逆序遍历是为了保证什么? 保证每件物品只有两种状态,取或者不取.那么正序遍历呢? 这不就正好满足完全背包的条件了吗 means ... 
- Piggy-Bank(HDU 1114)背包的一些基本变形
		Piggy-Bank HDU 1114 初始化的细节问题: 因为要求恰好装满!! 所以初始化要注意: 初始化时除了F[0]为0,其它F[1..V]均设为−∞. 又这个题目是求最小价值: 则就是初始化 ... 
- HDU 1114 Piggy-Bank(一维背包)
		题目地址:HDU 1114 把dp[0]初始化为0,其它的初始化为INF.这样就能保证最后的结果一定是满的,即一定是从0慢慢的加上来的. 代码例如以下: #include <algorithm& ... 
- hdu 1114  dp动规  Piggy-Bank
		Piggy-Bank Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit S ... 
- 怒刷DP之 HDU 1114
		Piggy-Bank Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit S ... 
- HDU 1114 Piggy-Bank(完全背包)
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1114 题目大意:根据储钱罐的重量,求出里面钱最少有多少.给定储钱罐的初始重量,装硬币后重量,和每个对应 ... 
- hdu -1114(完全背包)
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1114 思路:求出存钱罐装全部装满情况下硬币的最小数量,即求出硬币的最小价值.转换为最小背包的问题. # ... 
- HDU 1114(没有变形的完全背包)
		题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1114 Piggy-Bank Time Limit: 2000/1000 MS (Java/Others ... 
随机推荐
- maven项目打包发布到私有仓库
			在项目开发中通常会引用其他的jar,怎样把自己的项目做为一个jar包的形式发布到私服仓库中,主要有以下三个步骤 (怎样配置maven私服仓库,就不再这里说明了,可以参考以前的文章)1.在maven的s ... 
- c#Loading 页SplashScreenManager的使用
			一.新建一个加载界面: SplashScreenManager控件只是作为加载界面的统一管理器,我们要使用加载界面,需要自行创建加载界面,两种方法如下: 1.点击SplashScreenManager ... 
- Oracle_PL/SQL(6) 触发器(序列、视图)
			序列1.创建序列create sequence seq_alog start with 1 increment by 1 maxvalue 999999999999999999999999999 mi ... 
- hdu 1757 (矩阵快速幂) 一个简单的问题  一个简单的开始
			题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1757 题意不难理解,当x小于10的时候,数列f(x)=x,当x大于等于10的时候f(x) = a0 * ... 
- Pandas设置值
			1.创建数据 >>> dates = pd.date_range(', periods=6) >>> df = pd.DataFrame(np.arange(24) ... 
- Eclipse.Error.gen already exists but is not a source folder.
			在Eclipse ADT来开发Android App时会遇到以下问题:"myproject/gen already exists but is not a source folder. Co ... 
- c++文件中引用C代码
			下面提供一个比较完整的示例程序,一共有四个文件:main.cpp.test.c.test.h.test.hpp main.cpp #include "test.hpp" int m ... 
- Spring 系列教程之默认标签的解析
			Spring 系列教程之默认标签的解析 之前提到过 Spring 中的标签包括默认标签和自定义标签两种,而两种标签的用法以及解析方式存在着很大的不同,本章节重点带领读者详细分析默认标签的解析过程. 默 ... 
- PHP5.3的编译扩展
			./configure --prefix=/usr/local/php --enable-fastcgi --enable-zip --enable-fpm --enable-gd-native-tt ... 
- 基于tomcat的solr环境搭建(Linux)
			♥♥ solr是基于lucene的一个全文检索服务器,提供了一些类似webservice的API接口,用户可以通过http请求solr服务器,进行索引的建立和索引的搜索.索引建立的过程:用户提交的文 ... 
