PAT 1033. To Fill or Not to Fill

Posted A-Little-Nut

tags:

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

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: 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:
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 #include <cstdio>  
 2 #include <algorithm>  
 3 #include <vector>  
 4 using namespace std;  
 5 const int inf = 99999999;  
 6 struct station {  
 7     double price, dis;  
 8 };  
 9 bool cmp1(station a, station b) {  
10     return a.dis < b.dis;  
11 }  
12 int main() {  
13     double cmax, d, davg;  
14     int n;  
15     scanf("%lf%lf%lf%d", &cmax, &d, &davg, &n);  
16     vector<station> sta(n + 1);  
17     sta[0].price = 0.0;  
18     sta[0].dis = d;  
19     for(int i = 1; i <= n; i++) {  
20         scanf("%lf%lf", &sta[i].price, &sta[i].dis);  
21     }  
22     sort(sta.begin(), sta.end(), cmp1);  
23     double nowdis = 0.0,  maxdis = 0.0, nowprice = 0.0, totalPrice = 0.0, leftdis = 0.0;  
24     if(sta[0].dis != 0) {  
25         printf("The maximum travel distance = 0.00");  
26         return 0;  
27     } else {  
28         nowprice = sta[0].price;  
29     }  
30     while(nowdis < d) {  
31         maxdis = nowdis + cmax * davg;  
32         double minPriceDis = 0, minPrice = inf;  
33         int flag = 0;  
34         for(int i = 1; i <= n && sta[i].dis <= maxdis; i++) {  
35             if(sta[i].dis <= nowdis) continue;  
36             if(sta[i].price < nowprice) {  
37                 totalPrice += (sta[i].dis - nowdis - leftdis) * nowprice / davg;  
38                 leftdis = 0.0;  
39                 nowprice = sta[i].price;  
40                 nowdis = sta[i].dis;  
41                 flag = 1;  
42                 break;  
43             }  
44             if(sta[i].price < minPrice) {  
45                 minPrice = sta[i].price;  
46                 minPriceDis = sta[i].dis;  
47             }  
48         }  
49         if(flag == 0 && minPrice != inf) {  
50             totalPrice += (nowprice * (cmax - leftdis / davg));  
51             leftdis = cmax * davg - (minPriceDis - nowdis);  
52             nowprice = minPrice;  
53             nowdis = minPriceDis;  
54               
55         }  
56         if(flag == 0 && minPrice == inf) {  
57             nowdis += cmax * davg;  
58             printf("The maximum travel distance = %.2f", nowdis);  
59             return 0;  
60         }  
61     }  
62     printf("%.2f", totalPrice);  
63     return 0;  
64 }  

 

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

PAT Advanced 1033 To Fill or Not to Fill (25) [贪?算法]

PAT A1033To Fill or Not to Fill (C++) 贪心,思路清晰易懂

PAT A1033To Fill or Not to Fill (C++) 贪心,思路清晰易懂

PAT (Advanced Level) 1033. To Fill or Not to Fill (25)

PAT甲级1033 To Fill or Not to Fill (贪心算法)

PAT甲级1033 To Fill or Not to Fill (贪心算法)