PAT 1004 To Fill or Not to Fill (25),pat1004

來源:互聯網
上載者:User

PAT 1004 To Fill or Not to Fill (25),pat1004

題目描述
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.

輸入描述:
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.


輸出描述:
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.

輸入例子:
50 1300 12 86.00 12507.00 6007.00 1507.10 07.20 2007.50 4007.30 10006.85 300

輸出例子:
749.17



#include <iostream>#include <cstdio>#include <algorithm>#include <climits>using namespace std;typedef struct Node{double price;double distance;}Node;bool cmp(const Node& lhs, const Node& rhs){return lhs.distance<rhs.distance;}int main(){double Cm,D,cur,cost,minCost,maxDistance;int Da,N;int i,j,k,l,ans;while(cin>>Cm>>D>>Da>>N){maxDistance=Cm*Da;Node *node=new Node[N+1];for(i=0;i<N;i++)cin>>node[i].price>>node[i].distance;sort(node,node+N,cmp);node[N].price=0;node[N].distance=D;ans=cur=cost=0;for(i=0;i<N-1;i++){if((node[i+1].distance-node[i].distance)>maxDistance)break;}if(i<N-1){printf("The maximum travel distance = %.2lf\n",node[i].distance+maxDistance);}else{for(i=0;i<N;){//後面如果有比當前更便宜的汽油,現在先少弄點,夠到那個地方就OKl=i;minCost=node[i].price;for(j=i+1;j<=N && (node[i].distance+maxDistance>=node[j].distance);j++){if(minCost>node[j].price){l=j;break;}}if(l!=i){cost=cost+((node[l].distance-node[i].distance)/Da-cur)*node[i].price;cur=0;i=l;continue;}//如果找不到更便宜的加油站,找出相對最便宜的加油站,並且在當前加油站加滿油l=i;minCost=1e18;for(j=i+1;j<=N && (node[i].distance+maxDistance>=node[j].distance);j++){if(minCost>node[j].price){minCost=node[j].price;l=j;}}cost=cost+(Cm-cur)*node[i].price;cur=Cm-(node[l].distance-node[i].distance)/Da;i=l;}printf("%.2lf",cost);}/*for(i=0;i<N;i++)cout<<node[i].price<<" "<<node[i].distance<<endl;*/}return 0;}


貼個圖




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.