• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
ArgenBarbie
博客园    首页    新随笔    联系   管理    订阅  订阅
九度 题目1437: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.

输入:

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 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
50 1300 12 2
7.10 0
7.00 600
样例输出:
749.17
The maximum travel distance = 1200.00
#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
typedef struct
{
	double p;
	double d;
}station;
bool compare(station s1,station s2)
{
	return s1.d<s2.d;
}
int main()
{
	int n,i,j,k;
	double cmax,d,davg,c,min,price,dis;
	while(cin>>cmax>>d>>davg>>n)
	{
		station s[501];
		for(i=0;i<n;i++)
			cin>>s[i].p>>s[i].d;
		sort(s,s+n,compare);
		s[n].d=d;
		s[n].p=0;
		if(s[0].d!=0)
		{
			cout<<"The maximum travel distance = 0.00"<<endl;
			continue;
		}
		c=cmax;//油箱剩余容量
		price=dis=0;
		for(i=0;i<n;)
		{
			if(s[i+1].d-s[i].d>cmax*davg)
			{
				dis+=cmax*davg;
				break;
			}
			k=-1;
			for(j=i+1;j<n&&(s[j].d-s[i].d)<=davg*cmax;j++)//找能到达的比现在的便宜的最近的加油站
				if(s[j].p<s[i].p)
				{
					k=j;
					break;
				}
			if(k==-1)//能到的都比现在的贵
			{
				if(cmax*davg>=(d-s[i].d))//现在的装满油能到终点站
				{
					dis=d;
					price+=(d-s[i].d-(cmax-c)*davg)/davg*s[i].p;
					break;
				}
				else//找一个能到达的最便宜的
				{
					min=s[i+1].p;
					k=i+1;
					for(j=i+2;j<n&&(s[j].d-s[i].d)<=davg*cmax;j++)
					{
						if(s[j].p<min)
						{
							min=s[j].p;
							k=j;
						}
					}
					dis=s[k].d;
					price+=c*s[i].p;
					c=(s[k].d-s[i].d)/davg;
					i=k;
				}
			}
			else
			{
				dis=s[k].d;
				price+=(s[k].d-s[i].d-(cmax-c)*davg)/davg*s[i].p;
				c=cmax;
				i=k;
			}
		}
		if(dis==d)
			printf("%.2lf\n",price);
		else
			printf("The maximum travel distance = %.2lf\n",dis);
	}
	return 0;
}

  

posted on 2013-07-08 20:47  ArgenBarbie  阅读(421)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3