POJ2431 Expedition

http://poj.org/problem?id=2431

Description

A group of cows grabbed a truck and ventured on an expedition deep into the jungle. Being rather poor drivers, the cows unfortunately managed to run over a rock and puncture the truck's fuel tank. The truck now leaks one unit of fuel every unit of distance it travels.

To repair the truck, the cows need to drive to the nearest town (no more than 1,000,000 units distant) down a long, winding road. On this road, between the town and the current location of the truck, there are N (1 <= N <= 10,000) fuel stops where the cows can stop to acquire additional fuel (1..100 units at each stop).

The jungle is a dangerous place for humans and is especially dangerous for cows. Therefore, the cows want to make the minimum possible number of stops for fuel on the way to the town. Fortunately, the capacity of the fuel tank on their truck is so large that there is effectively no limit to the amount of fuel it can hold. The truck is currently L units away from the town and has P units of fuel (1 <= P <= 1,000,000).

Determine the minimum number of stops needed to reach the town, or if the cows cannot reach the town at all.

题意:你开一辆卡车要走L长的路,中间右若干加油站,每个加油站的加油量不同,求到终点的最少加油次数。

思路:《挑战程序设计》p75的例题,变换一下思考方式,如果认为“在到达加油站i时,就获得了一次在之后的任何时候都可以加B(i)单位油的权利”,就很好解决了,用优先队列,把之前到的加油站全放进去,当当前没油时,取最大的加上。

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
#define maxn 100000+100
#define ll long long

int n,d[maxn],gas[maxn],r[maxn];
priority_queue<int> Q;

bool cmp(int a,int b)
{
	return d[a]<d[b];
}
int main()	
{
	//freopen("input.in","r",stdin);
	cin>>n;
	for(int i=1;i<=n+1;i++)r[i]=i;
	for(int i=1;i<=n+1;i++)cin>>d[i]>>gas[i];
	sort(r+1,r+1+n,cmp);
	int ans=0,tank=gas[r[n+1]];
	for(int i=n;i>=0;i--)
	{
		while(tank-(d[r[i+1]]-d[r[i]])<0)
		{
			if(Q.empty()){puts("-1");exit(0);}
			ans++;tank+=Q.top();Q.pop();
		}
		tank-=(d[r[i+1]]-d[r[i]]);
		Q.push(gas[r[i]]);
	}
	cout<<ans<<endl;
	return 0;
}

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值