CF1007E.Mini Metro

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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 nn stations on the line, aia_i people are waiting for the train at the ii -th station at the beginning of the game. The game starts at the beginning of the 00 -th hour. At the end of each hour (couple minutes before the end of the hour), bib_i people instantly arrive to the ii -th station. If at some moment, the number of people at the ii -th station is larger than cic_i , you lose.

A player has several trains which he can appoint to some hours. The capacity of each train is kk passengers. In the middle of the appointed hour, the train goes from the 11 -st to the nn -th station, taking as many people at each station as it can accommodate. A train can not take people from the ii -th station if there are people at the i1i-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 tt hours. Determine the minimum number of trains he will need for it.

输入格式

The first line contains three integers nn , tt , and kk ( 1n,t200,1k1091 \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 nn lines contains three integers aia_i , bib_i , and cic_i ( 0ai,bici1090 \leq a_i, b_i \leq c_i \leq 10^9 ) — number of people at the ii -th station in the beginning of the game, number of people arriving to ii -th station in the end of each hour and maximum number of people at the ii -th station allowed respectively.

输出格式

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

输入输出样例

  • 输入#1

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

    输出#1

    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.

首页