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

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

dp

#include 
#include
#include
#include
using namespace std;#define MAX_COIN_NUM 505#define MAX_CAP 10005struct Coin{ int price, weight;}coin[MAX_COIN_NUM];int capacity;int coin_num;int f[MAX_CAP]; void input(){ int a, b; scanf("%d%d", &a, &b); capacity = b - a; scanf("%d", &coin_num); for (int i = 0; i < coin_num; i++) scanf("%d%d", &coin[i].price, &coin[i].weight);}void work(){ memset(f, -1, sizeof(f)); f[0] = 0; for (int i = 0; i < coin_num; i++) for (int j = coin[i].weight; j <= capacity; j++) if (f[j - coin[i].weight] != -1) { int temp = f[j - coin[i].weight] + coin[i].price; if (f[j] == -1 || f[j] > temp) f[j] = temp; }}int main(){ int t; scanf("%d", &t); while (t--) { input(); work(); if (f[capacity] == -1) printf("This is impossible.\n"); else printf("The minimum amount of money in the piggy-bank is %d.\n", f[capacity]); } return 0;}
View Code

 

转载于:https://www.cnblogs.com/rainydays/archive/2013/06/12/3132740.html

你可能感兴趣的文章
JavaScript异步之Generator、async、await
查看>>
讲讲吸顶效果与react-sticky
查看>>
c++面向对象的一些问题1 0
查看>>
直播视频流技术名词
查看>>
企业级java springboot b2bc商城系统开源源码二次开发-hystrix参数详解(八)
查看>>
java B2B2C 多租户电子商城系统- 整合企业架构的技术点
查看>>
IOC —— AOP
查看>>
比特币现金将出新招,推动比特币现金使用
查看>>
数据库的这些性能优化,你做了吗?
查看>>
某大型网站迁移总结(完结)
查看>>
mysql的innodb中事务日志(redo log)ib_logfile
查看>>
部署SSL证书后,网页内容造成页面错误提示的处理办法
查看>>
MS SQLSERVER通用存储过程分页
查看>>
60.使用Azure AI 自定义视觉服务实现物品识别Demo
查看>>
Oracle 冷备份
查看>>
jq漂亮实用的select,select选中后,显示对应内容
查看>>
C 函数sscanf()的用法
查看>>
python模块之hashlib: md5和sha算法
查看>>
解决ros建***能登录不能访问内网远程桌面的问题
查看>>
pfsense锁住自己
查看>>