#x1023. cf1007E Mini Metro

cf1007E Mini Metro

Mini Metro

题面翻译

nn 个站台,从左往右编号为 1,2,,n1, 2, \cdots, n,每个站台初始时 (00 时刻) 有 aia_i 个人。

每个时刻,会依次发生如下事件:

你可以选择召唤一辆向右行驶的火车 (最大载客量为 KK),接走所有站台上从左往右数的前 KK 个人。

如果所有站台上的总人数不足 KK,则接走所有站台上的人。

这个过程你可以执行任意多次 (即在同一时刻可以召唤任意辆火车)。

在该时刻末,第 ii 个站台上会增加 bib_i (只与站台编号有关的常数) 个人。

如果第 ii 个站台上的人数超过 cic_i,则认为你输了。

你现在要坚持 tt 时刻,求你在不输的前提下,至少需要召唤多少辆火车。

题目描述

In a simplified version of a "Mini Metro" game, there is only one subway line, and all the trains go in the same direction. There are n n stations on the line, ai a_i people are waiting for the train at the i i -th station at the beginning of the game. The game starts at the beginning of the 0 0 -th hour. At the end of each hour (couple minutes before the end of the hour), bi b_i people instantly arrive to the i i -th station. If at some moment, the number of people at the i i -th station is larger than ci c_i , you lose.

A player has several trains which he can appoint to some hours. The capacity of each train is k k passengers. In the middle of the appointed hour, the train goes from the 1 1 -st to the n n -th station, taking as many people at each station as it can accommodate. A train can not take people from the i i -th station if there are people at the i1 i-1 -th station.

If multiple trains are appointed to the same hour, their capacities are being added up and they are moving together.

The player wants to stay in the game for t t hours. Determine the minimum number of trains he will need for it.

输入格式

The first line contains three integers n n , t t , and k k ( 1n,t200,1k109 1 \leq n, t \leq 200, 1 \leq k \leq 10^9 ) — the number of stations on the line, hours we want to survive, and capacity of each train respectively.

Each of the next n n lines contains three integers ai a_i , bi b_i , and ci c_i ( 0ai,bici109 0 \leq a_i, b_i \leq c_i \leq 10^9 ) — number of people at the i i -th station in the beginning of the game, number of people arriving to i i -th station in the end of each hour and maximum number of people at the i i -th station allowed respectively.

输出格式

Output a single integer number — the answer to the problem.

样例 #1

样例输入 #1

3 3 10
2 4 10
3 3 9
4 2 8

样例输出 #1

2

样例 #2

样例输入 #2

4 10 5
1 1 1
1 0 1
0 5 8
2 7 100

样例输出 #2

12

提示

Let's look at the sample. There are three stations, on the first, there are initially 2 people, 3 people on the second, and 4 people on the third. Maximal capacities of the stations are 10, 9, and 8 respectively.

One of the winning strategies is to appoint two trains to the first and the third hours. Then on the first hour, the train takes all of the people from the stations, and at the end of the hour, 4 people arrive at the first station, 3 on the second, and 2 on the third.

In the second hour there are no trains appointed, and at the end of it, the same amount of people are arriving again.

In the third hour, the train first takes 8 people from the first station, and when it arrives at the second station, it takes only 2 people because it can accommodate no more than 10 people. Then it passes by the third station because it is already full. After it, people arrive at the stations once more, and the game ends.

As there was no such moment when the number of people at a station exceeded maximal capacity, we won using two trains.