CF141D.Take-off Ramps

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya participates in a ski race along the XX axis. The start is at point 00 , and the finish is at LL , that is, at a distance LL meters from the start in the positive direction of the axis. Vasya has been training so hard that he can run one meter in exactly one second.

Besides, there are nn take-off ramps on the track, each ramp is characterized by four numbers:

  • xix_{i} represents the ramp's coordinate
  • did_{i} represents from how many meters Vasya will land if he goes down this ramp
  • tit_{i} represents the flight time in seconds
  • pip_{i} is the number, indicating for how many meters Vasya should gather speed to get ready and fly off the ramp. As Vasya gathers speed, he should ski on the snow (that is, he should not be flying), but his speed still equals one meter per second.

Vasya is allowed to move in any direction on the XX axis, but he is prohibited to cross the start line, that is go to the negative semiaxis. Vasya himself chooses which take-off ramps he will use and in what order, that is, he is not obliged to take off from all the ramps he encounters. Specifically, Vasya can skip the ramp. It is guaranteed that xi+di<=Lx_{i}+d_{i}<=L , that is, Vasya cannot cross the finish line in flight.

Vasya can jump from the ramp only in the positive direction of XX axis. More formally, when using the ii -th ramp, Vasya starts gathering speed at point xipix_{i}-p_{i} , jumps at point xix_{i} , and lands at point xi+dix_{i}+d_{i} . He cannot use the ramp in opposite direction.

Your task is to find the minimum time that Vasya will spend to cover the distance.

输入格式

The first line contains two integers nn and LL ( 0<=n<=1050<=n<=10^{5} , 1<=L<=1091<=L<=10^{9} ). Then nn lines contain the descriptions of the ramps, each description is on a single line. Each description is a group of four non-negative integers xix_{i} , did_{i} , tit_{i} , pip_{i} ( 0<=xi<=L0<=x_{i}<=L , 1<=di,ti,pi<=1091<=d_{i},t_{i},p_{i}<=10^{9} , xi+di<=Lx_{i}+d_{i}<=L ).

输出格式

Print in the first line the minimum time in seconds Vasya needs to complete the track. Print in the second line kk — the number of take-off ramps that Vasya needs to use, and print on the third line of output kk numbers the number the take-off ramps Vasya used in the order in which he used them. Print each number exactly once, separate the numbers with a space. The ramps are numbered starting from 1 in the order in which they are given in the input.

输入输出样例

  • 输入#1

    2 20
    5 10 5 5
    4 16 1 7
    

    输出#1

    15
    1
    1 
  • 输入#2

    2 20
    9 8 12 6
    15 5 1 1
    

    输出#2

    16
    1
    2 

说明/提示

In the first sample, Vasya cannot use ramp 2, because then he will need to gather speed starting from point -3, which is not permitted by the statement. The optimal option is using ramp 1, the resulting time is: moving to the point of gathering speed + gathering speed until reaching the takeoff ramp + flight time + moving to the finish line =0+5+5+5=15=0+5+5+5=15 .

In the second sample using ramp 1 is not optimal for Vasya as t_{1}>d_{1} . The optimal option is using ramp 2, the resulting time is: moving to the point of gathering speed + gathering speed until reaching the takeoff ramp + flight time + moving to the finish line =14+1+1+0=16=14+1+1+0=16 .

首页