SP4483 MROADS - Roads Repair
Description
[English](/problems/MROADS/en/) [Vietnamese](/problems/MROADS/vn/)The traffic network in a country consists of N cities (labeled with integers 1 to N) and N-1 roads connecting the cities. There is a unique path between each pair of different cities.
Because of the many years of lazy maintenance the roads are pretty damaged and for each road two numbers A and B are known – the integer A represents the current time (in seconds) needed to travel along the road, and the integer B represents the smallest possible time (in seconds) needed to travel along this road if we repair all the damage.
We want to invest a certain amount of money into road repair. For a particular road, the result will be proportional to the amount of invested money. For each euro invested in some road, the time needed to travel along that road will be reduced by one second (the amount of money invested in some road has to be an integer). The travel time cannot be reduced beyond the smallest possible time B described above.
We are given a certain amount of money. We want to distribute this money along different roads in such a way that the time needed to travel from the city 1 to the most distant city (after all the repairs) is as small as possible.
Write a program that will find this smallest time.
Input Format
The first line of input contains two integers N and K, 2
Each of the next N-1 lines contains four integers X, Y, A and B, 0
Output Format
The first and only line of output should contain a single integer – the minimum time from the task description.