To Fill or Not to Fill
This is an after class programming problem of ads. The main algorithm used is Greedy Algorithm
Description
With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car is limited, we have to find gas stations on the way from time to time. Different gas station may give different price. You are asked to carefully design the cheapest route to go.
Input Specification:
Each input file contains one test case. For each case, the first line contains 4 positive numbers: Cmax (≤100), the maximum capacity of the tank; D(≤30000), the distance between Hangzhou and the destination city; Davg (≤20), the average distance per unit gas that the car can run; and N (≤500), the total number of gas stations. Then N lines follow, each contains a pair of non-negative numbers: Pi, the unit gas price, and Di (≤D), the distance between this station and Hangzhou, for i=1,⋯,N. All the numbers in a line are separated by a space.
Output Specification:
For each test case, print the cheapest price in a line, accurate up to 2 decimal places. It is assumed that the tank is empty at the beginning. If it is impossible to reach the destination, print The maximum travel distance = X
where X
is the maximum possible distance the car can run, accurate up to 2 decimal places.
Sample Input 1:
1 | 50 1300 12 8 |
Sample Output 1:
1 | 749.17 |
Sample Input 2:
1 | 50 1300 12 2 |
Sample Output 2:
1 | The maximum travel distance = 1200.00 |
Solution
Just saw this problem, my idea is: finding the cheapest gas station within the driving distance, then refuel to make sure it can just reach the next gas station until the end.
But in fact, the optimal solution should be to find the cheapest gas station within the mileage range to add the most fuel, and then go to the next gas station to replenish it, so as to ensure that it can just reach the terminal.
So, the answer will be:
1 | // |