CF69B.Bets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to place bets on each section no more than on one competitor.

To begin with friends learned the rules: in the race there are nn sections of equal length and mm participants. The participants numbered from 11 to mm . About each participant the following is known:

  • lil_{i} — the number of the starting section,
  • rir_{i} — the number of the finishing section ( li<=ril_{i}<=r_{i} ),
  • tit_{i} — the time a biathlete needs to complete an section of the path,
  • cic_{i} — the profit in roubles. If the ii -th sportsman wins on one of the sections, the profit will be given to the man who had placed a bet on that sportsman.

The ii -th biathlete passes the sections from lil_{i} to rir_{i} inclusive. The competitor runs the whole way in (rili+1)ti(r_{i}-l_{i}+1)·t_{i} time units. It takes him exactly tit_{i} time units to pass each section. In case of the athlete's victory on kk sections the man who has betted on him receives kcik·c_{i} roubles.

In each section the winner is determined independently as follows: if there is at least one biathlete running this in this section, then among all of them the winner is the one who has ran this section in minimum time (spent minimum time passing this section). In case of equality of times the athlete with the smaller index number wins. If there are no participants in this section, then the winner in this section in not determined. We have to say that in the summer biathlon all the participants are moving at a constant speed.

We should also add that Nikita can bet on each section and on any contestant running in this section.

Help the friends find the maximum possible profit.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=1001<=n,m<=100 ). Then follow mm lines, each containing 4 integers lil_{i} , rir_{i} , tit_{i} , cic_{i} ( 1<=li<=ri<=n1<=l_{i}<=r_{i}<=n , 1<=ti,ci<=10001<=t_{i},c_{i}<=1000 ).

输出格式

Print a single integer, the maximal profit in roubles that the friends can get. In each of nn sections it is not allowed to place bets on more than one sportsman.

输入输出样例

  • 输入#1

    4 4
    1 4 20 5
    1 3 21 10
    3 3 4 30
    3 4 4 20
    

    输出#1

    60
  • 输入#2

    8 4
    1 5 24 10
    2 4 6 15
    4 6 30 50
    6 7 4 20
    

    输出#2

    105

说明/提示

In the first test the optimal bet is: in the 1-2 sections on biathlete 1, in section 3 on biathlete 3, in section 4 on biathlete 4. Total: profit of 5 rubles for 1 section, the profit of 5 rubles for 2 section, profit of 30 rubles for a 3 section, profit of 20 rubles for 4 section. Total profit 60 rubles.

In the second test the optimal bet is: on 1 and 5 sections on biathlete 1, in the 2-4 sections on biathlete 2, in the 6-7 sections on athlete 4. There is no winner in the 8 section. Total: profit of 10 rubles for 1 section, the profit of 15 rubles for 2,3,4 section, profit of 10 rubles for a 5 section, profit of 20 rubles for 6, 7 section. Total profit 105 rubles.

首页