Buns(CF-106C)

Problem Description

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 to m. Lavrenty knows that he has ai grams left of the i-th stuffing. It takes exactly bi grams of stuffing i and ci grams 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 for d0 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

题意:给出 n 克的面和 m 种馅,如果只用面做面包,花费 c0 克的面,做一个价值为 d0 的馒头。给出的 m 种馅每种都有 a、b、c、d 种属性,a 表示馅有多少克,b 为做一个含有该馅的面包所需的馅的量,c 是做含有该馅的面包所需的面的量,d 为做出的面包具有的价值,问最多能卖多少钱

思路:多重背包,找准容量、价值即可

Source Program

#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include<utility>
#include<stack>
#include<queue>
#include<vector>
#include<set>
#include<map>
#define PI acos(-1.0)
#define E 1e-6
#define MOD 16007
#define INF 0x3f3f3f3f
#define N 10001
#define LL long long
using namespace std;
int dp[N];
int main()
{
    int n,m,c0,d0;
    while(scanf("%d%d%d%d",&n,&m,&c0,&d0)!=EOF){
        memset(dp,0,sizeof(dp));
        for(int i=c0;i<=n;i++)//初始价值,即i克面团不使用馅料所能够卖价格
            dp[i]=i/c0*d0;

        for(int i=0;i<m;i++){//对每一种馅
            int a,b,c,d;
            scanf("%d%d%d%d",&a,&b,&c,&d);
            for(int j=1;j<=a/b;j++)//使用i馅最多生成a/b个面包
                for(int k=n;k>=c;k--)//消耗的面的数量
                    dp[k]=max(dp[k-c]+d,dp[k]);
        }
        printf("%d\n",dp[n]);
    }
    return 0;
}

 

buns餐厅的HTML美食展示页面是一个通过HTML编写的网页,旨在向用户展示餐厅的美食菜单和精美的食物图片。这个页面设计简洁明了,以用户友好的方式呈现美食的信息。 页面的顶部是一个鲜艳的LOGO,增强了餐厅品牌的识别度。下方则是餐厅的导航栏,包括主页、菜单、特别优惠和联系方式等选项,以帮助用户进行导航。用户可以随时点击这些选项,快速进入所需页面。 餐厅的主页以特色菜肴的图片轮播展示作为页面的焦点。通过这种设计,餐厅能够吸引用户的注意力,并激发他们的食欲。在图片下方,每个特色菜肴都标有其名称和简要介绍,以便用户了解更多相关信息。 在菜单页面上,buns餐厅将美食菜单分为早餐、午餐和晚餐等不同的菜单部分。这些部分包含了各种各样的美食项目,并提供了菜品的介绍和价格。用户可以方便地阅读和浏览不同菜单,了解餐厅所提供的美食选择。 特别优惠页面展示了餐厅的优惠活动,例如季节性菜单、特殊节日的庆祝活动等。通过这个页面,餐厅能够吸引顾客,为他们提供更多理由来就餐。 联系方式页面提供了餐厅的地址、电话号码和电子邮箱等联系方式。用户可以通过这些方式与餐厅进行沟通和预订,提高了用户的便利性。 总之,buns餐厅的HTML美食展示页面通过清晰的页面布局、精美的图片展示和详细的菜单介绍,为用户提供了一个直观且便捷的美食展示平台。这个页面不仅向用户展示了餐厅的特色美食,还提供了各种功能和信息,以满足用户的需求和方便用户的就餐体验。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值