博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Buns(dp+多重背包)
阅读量:5085 次
发布时间:2019-06-13

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

C. Buns
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Lavrenty, a baker, is going to make several buns with stuffings and sell them.

Lavrenty has n grams of dough as well as m different stuffing types. The stuffing types are numerated from 1 tom. Lavrenty knows that he has ai grams left of the i-th stuffing. It takes exactly bi grams of stuffing i and cigrams of dough to cook a bun with the i-th stuffing. Such bun can be sold for di tugriks.

Also he can make buns without stuffings. Each of such buns requires c0 grams of dough and it can be sold ford0 tugriks. So Lavrenty can cook any number of buns with different stuffings or without it unless he runs out of dough and the stuffings. Lavrenty throws away all excess material left after baking.

Find the maximum number of tugriks Lavrenty can earn.

Input

The first line contains 4 integers n, m, c0 and d0 (1 ≤ n ≤ 1000, 1 ≤ m ≤ 10, 1 ≤ c0, d0 ≤ 100). Each of the following m lines contains 4 integers. The i-th line contains numbers ai, bi, ci and di (1 ≤ ai, bi, ci, di ≤ 100).

Output

Print the only number — the maximum number of tugriks Lavrenty can earn.

Examples
input
10 2 2 1 7 3 2 100 12 3 1 10
output
241
input
100 1 25 50 15 5 20 10
output
200
Note

To get the maximum number of tugriks in the first sample, you need to cook 2 buns with stuffing 1, 4 buns with stuffing 2 and a bun without any stuffing.

In the second sample Lavrenty should cook 4 buns without stuffings.

思维:让你做蛋糕,有各种口味的奶油,和面,消耗一定的面一定口味的奶油可以卖d元,问最多买多少钱;因为是蛋糕肯定是整个整个的,所以要用到背包;多重背包;

dp[i][k]代表前i种蛋糕在面小于等于k的最大利润;

代码:

#include
#include
#include
#include
#include
#include
#include
using namespace std;const int INF=0x3f3f3f3f;#define SI(x) scanf("%d",&x)#define PI(x) printf("%d",x)#define P_ printf(" ")#define mem(x,y) memset(x,y,sizeof(x))struct Node{ int a,b,c,d;};Node dt[15];int dp[15][1010];int main(){ int n; int m; while(~scanf("%d%d%d%d",&n,&m,&dt[0].c,&dt[0].d)){ dt[0].a=100010;dt[0].b=1; for(int i=1;i<=m;i++)scanf("%d%d%d%d",&dt[i].a,&dt[i].b,&dt[i].c,&dt[i].d); mem(dp,0); for(int i=0;i<=m;i++){ for(int j=0;j*dt[i].b<=dt[i].a;j++){ for(int k=n;k>=j*dt[i].c;k--){ if(i)dp[i][k]=max(dp[i][k],dp[i-1][k-j*dt[i].c]+j*dt[i].d); else dp[i][k]=max(dp[i][k],dp[i][k-j*dt[i].c]+j*dt[i].d); } } } printf("%d\n",dp[m][n]); } return 0;}

 

 

转载于:https://www.cnblogs.com/handsomecui/p/5255180.html

你可能感兴趣的文章
jvm 这我就能会了 擦
查看>>
实战技能:小小微信支付业务,何必虚惊一场
查看>>
17-1 djanjo进阶-路由,视图,模板
查看>>
nginx 反向代理
查看>>
解析大型.NET ERP系统核心组件 查询设计器 报表设计器 窗体设计器 工作流设计器 任务计划设计器...
查看>>
Jquery——选择器
查看>>
python2 安装scrapy出现错误提示解决办法~
查看>>
javaWeb之maven多数据库环境的配置信息
查看>>
C#面向对象总结2
查看>>
手机网页点击链接触发手机自动拨打或保存电话的代码
查看>>
Python编程-函数进阶
查看>>
Windows搭建Log4Net+FileBeat+ELK日志分析系统过程
查看>>
python-code-14
查看>>
(原创)Nhibernate-对象关系映射的两种方式以及一些注意
查看>>
jquery中filter、find、children、contents、contains区别
查看>>
php--------网页开发实现微信JS的(定位,地图显示,照片选择功能)
查看>>
02 servlet基础 生命周期 tomcat web.xml
查看>>
DotNet软件开发框架
查看>>
《BI项目笔记》历年感官评吸质量均值变化分析Cube的建立
查看>>
来,让我们谈一谈Normalize.css
查看>>