CF106C.Buns

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

Lavrenty has nn grams of dough as well as mm different stuffing types. The stuffing types are numerated from 1 to mm . Lavrenty knows that he has aia_{i} grams left of the ii -th stuffing. It takes exactly bib_{i} grams of stuffing ii and cic_{i} grams of dough to cook a bun with the ii -th stuffing. Such bun can be sold for did_{i} tugriks.

Also he can make buns without stuffings. Each of such buns requires c0c_{0} grams of dough and it can be sold for d0d_{0} 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.

输入格式

The first line contains 44 integers nn , mm , c0c_{0} and d0d_{0} ( 1<=n<=10001<=n<=1000 , 1<=m<=101<=m<=10 , 1<=c0,d0<=1001<=c_{0},d_{0}<=100 ). Each of the following mm lines contains 44 integers. The ii -th line contains numbers aia_{i} , bib_{i} , cic_{i} and did_{i} ( 1<=ai,bi,ci,di<=1001<=a_{i},b_{i},c_{i},d_{i}<=100 ).

输出格式

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

输入输出样例

  • 输入#1

    10 2 2 1
    7 3 2 100
    12 3 1 10
    

    输出#1

    241
  • 输入#2

    100 1 25 50
    15 5 20 10
    

    输出#2

    200

说明/提示

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.

首页