码迷,mamicode.com
首页 > 其他好文 > 详细

PAT 1033. To Fill or Not to Fill

时间:2018-01-16 18:45:33      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:post   spec   ice   else   distance   i++   mit   hat   color   

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

标签:post   spec   ice   else   distance   i++   mit   hat   color   

原文地址:https://www.cnblogs.com/A-Little-Nut/p/8296985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!