1033 To Fill or Not to Fill (25 分) 贪心算法

题目

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 ​ m a x ( ≤ 100 ) C_​max(≤ 100) Cmax(100), the maximum capacity of the tank;$ D (≤30000)$, the distance between Hangzhou and the destination city; D ​ a v g ( ≤ 20 ) D_​avg(≤20) Davg(20), the average distance per unit gas that the car can run; and N ( ≤ 500 ) N (≤ 500) N(500), the total number of gas stations. Then N lines follow, each contains a pair of non-negative numbers: P i P_i Pi​​ , the unit gas price, and D ​ i ( ≤ D ) D_​i(≤D) Di(D), the distance between this station and Hangzhou, for i = 1 , ⋯ , N i=1,⋯,N 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:

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

解题思路

  题目大意: 从某地开车出发,去目标地点,已知每单位油行驶距离、最大油量、目标城市距离,给你沿途所有加油站的信息,包括油价和距离。求算出 能否到达目标城市,如果能,给出最小的开销,如果不能给出最远行驶距离。
  解题思路: 显然,这是基于贪心算法的题目,拿最少的钱行驶最远的距离。
  仔细把两个Demo好好过一遍,然后注意边界情况,就能AC,但是貌似测试数据比较变态,需要小心。汽车的油箱最大容量和单位行驶距离都是固定的,那么每到一个加油站,从该加油站出发,行驶的最大距离也是已知的。我们不妨从第一个加油站开始算,比较可到达范围内,最便宜的站点是哪个 : ① 如果存在比当前站点还便宜的站点,先到最近的一个站,仅加满到该地的油即可; ② 如果不存在比当前更便宜的站点,那么显然目前这个点是最便宜的,先加满再说。然后去范围内相对最便宜的下一个站点;③ 如果下一站不在可达范围内,如果此时已经临近终点,那么输出总开销,如果此时终点也不可达,那么输出最远距离。
  更多细节,都在注释中体现了,详情参考代码。
<

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值