Hide

Problem C
Semafori

Luka is driving his truck along a long straight road with many traffic lights. For each traffic light he knows how long the red and green lights will be on (the cycle repeating endlessly).

When Luka starts his journey, all traffic lights are red and just started their cycle. Luka moves one distance unit per second. When a traffic light is red, he stops and waits until it turns green.

Write a program that determines how much time Luka needs to reach the end of the road. The start of the road is at distance zero, the end at distance $L$.

Input

The first line contains two integers $N$ and $L$ ($1 \le N \le 100$, $1 \le L \le 1000$), the number of traffic lights on the road and the length of the road.

Each of the next $N$ lines contains three integers $D$, $R$ and $G$, describing one traffic light ($1 \le D < L$, $1 \le R \le 100$, $1 \le G \le 100$). $D$ is the distance of the traffic light from the start of the road. $R$ and $G$ denote how long the red and green lights are on, respectively.

The traffic lights will be ordered in increasing order of $D$. No two traffic lights will share the same position.

Output

Output the time (in seconds) Luka needs to reach the end of the road.

Sample Input 1 Sample Output 1
2 10
3 5 5
5 2 2
12
Sample Input 2 Sample Output 2
4 30
7 13 5
14 4 4
15 3 10
25 1 1
36

Please log in to submit a solution to this problem

Log in