1033 To Fill or Not to Fill

Posted ruruozhenhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1033 To Fill or Not to Fill相关的知识,希望对你有一定的参考价值。

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: C?max?? (≤ 100), the maximum capacity of the tank; D (≤30000), the distance between Hangzhou and the destination city; D?avg?? (≤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: P?i??, the unit gas price, and D?i?? (≤), the distance between this station and Hangzhou, for ,. 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:

50 1300 12 8
6.00 1250
7.00 600
7.00 150
7.10 0
7.20 200
7.50 400
7.30 1000
6.85 300
 

Sample Output 1:

749.17
 

Sample Input 2:

50 1300 12 2
7.10 0
7.00 600
 

Sample Output 2:

The maximum travel distance = 1200.00

 

题意:

  汽车刚开始的时候没有油,图中会经过一些加油站,每个加油站的油价不同,问选择那些加油站加油,会使全程的油价最低。

思路:

  这道题用到的是贪心算法,在选择加油的过程中会出现两种情况:

  1. 从当前加油站向前行驶,在途中会遇到比当前加油站油价更低的加油站,这时我们只需要在当前加油站加的油能够跑到下一个加油站即可。

  2.从当前加油站向前行驶,当油箱中的廉价油都消耗完了之后,仍然没有找到比当前加油站油价更低的加油站,这时我们要将油箱加满,然后寻找途中相对廉价的加油站加油。

Code:

 

以上是关于1033 To Fill or Not to Fill的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1033. To Fill or Not to Fill

1033 To Fill or Not to Fill (25 分)

1033. To Fill or Not to Fill (25)

1033 to fill or not to fill

PAT 1033 To Fill or Not to Fill[dp]

1033. To Fill or Not to Fill (25)