POJ 2431 Expedition(探险)
POJ 2431 Expedition(探险)
Time Limit: 1000MS Memory Limit: 65536K
【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. |
一群奶牛劫了量卡车去丛林探险。可惜不是老司机,偏要赶车上石去作死,最后折了油箱君。现在每行驶一单位路程就会漏一份油。 为了修车,这群奶牛需要经过千难万阻前往最近的城镇(不超过1,000,000个单位路程)。一路上有N(1 <= N <= 10,000)个加油站可供加油(每个加油站有1..100份的油)。 深山老林,人畜皆害。因此,奶牛们希望在去城镇的路上尽可能少地去加油站。幸运的是,车上用的可是四次元油箱,木有装油上限。卡车现在离城镇有L个单位距离,并且有P份的油(1 <= P <= 1,000,000)。 找出到达城镇最少的加油次数,或者这群牛无法抵达城镇。 |
【Input】 |
【输入】 |
* Line 1: A single integer, N * Lines 2..N+1: Each line contains two space-separated integers describing a fuel stop: The first integer is the distance from the town to the stop; the second is the amount of fuel available at that stop. * Line N+2: Two space-separated integers, L and P |
*第1行:一个整数N *第2..N+1行:每行两个以空格隔开的整数表示一个加油站:第一个整数表示城镇到加油站距离;第二个表示加油站的油量。 *第N+2行:两个以空格隔开的整数,L和P |
【Output】 |
【输出】 |
* Line 1: A single integer giving the minimum number of fuel stops necessary to reach the town. If it is not possible to reach the town, output -1. |
*第1行:一个整数表示到达城镇时最少需要的加油站数量。如果无法达到,输出-1。 |
【Sample Input - 输入样例】 |
【Sample Output - 输出样例】 |
4 4 4 5 2 11 5 15 10 25 10 |
2 |
【Hint】 |
【提示】 |
INPUT DETAILS: The truck is 25 units away from the town; the truck has 10 units of fuel. Along the road, there are 4 fuel stops at distances 4, 5, 11, and 15 from the town (so these are initially at distances 21, 20, 14, and 10 from the truck). These fuel stops can supply up to 4, 2, 5, and 10 units of fuel, respectively. OUTPUT DETAILS: Drive 10 units, stop to acquire 10 more units of fuel, drive 4 more units, stop to acquire 5 more units of fuel, then drive to the town. |
输入说明: 卡车离城镇25个单位长度,拥有10个单位汽油。一路上有4个加油站分别离城镇4,5,11和15(因此他们一开始距卡车21,20,14和10)。这些加油站可分别提供4,2,5和10份的汽油。 输出说明: 行驶10个单位长度,获得10份汽油,再行驶4个单位长度,获得5份汽油,然后前往城镇。 |
【题解】
因为油箱是无限容量的,油量==可以前进的路程。
所以我们可以把问题转化一下:
有多少油就可以走多远,已经走过的加油站可以随时隔空加油。
至于怎么选择加油站,每次贪心油量最多的加油站就行了。
【代码 C++】
#include<cstdio>
#include <queue>
#include <algorithm>
std::priority_queue<int, std::vector<int> > fuel;
struct Stop{
int fuel, distant;
}data[];
bool cmp(Stop A, Stop B){
return A.distant < B.distant;
}
int main(){
int i, j, n, L, nowL, opt;
scanf("%d", &n);
for (i = ; i < n; ++i){
scanf("%d%d", &L, &nowL);
data[i].distant = -L; data[i].fuel = nowL;
}
scanf("%d%d", &L, &nowL);
for (i = ; i < n; ++i) data[i].distant += L;
std::sort(data, data + n, cmp); for (i = opt = ; nowL < L; ++opt){
while (i < n && data[i].distant <= nowL) fuel.push(data[i++].fuel);
if (fuel.empty()) break;
nowL += fuel.top(), fuel.pop();
}
if (nowL < L) puts("-1");
else printf("%d", opt);
return ;
}
POJ 2431 Expedition(探险)的更多相关文章
- POJ 2431 Expedition (贪心+优先队列)
题目地址:POJ 2431 将路过的加油站的加油量放到一个优先队列里,每次当油量不够时,就一直加队列里油量最大的直到能够到达下一站为止. 代码例如以下: #include <iostream&g ...
- POJ 2431 Expedition (STL 优先权队列)
Expedition Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8053 Accepted: 2359 Descri ...
- poj - 2431 Expedition (优先队列)
http://poj.org/problem?id=2431 你需要驾驶一辆卡车做一次长途旅行,但是卡车每走一单位就会消耗掉一单位的油,如果没有油就走不了,为了修复卡车,卡车需要被开到距离最近的城镇, ...
- POJ 2431 Expedition (贪心 + 优先队列)
题目链接:http://poj.org/problem?id=2431 题意:一辆卡车要行驶L单位距离,卡车上有P单位的汽油.一共有N个加油站,分别给出加油站距终点距离,及加油站可以加的油量.问卡车能 ...
- POJ 2431——Expedition(贪心,优先队列)
链接:http://poj.org/problem?id=2431 题解 #include<iostream> #include<algorithm> #include< ...
- poj 2431 Expedition 贪心 优先队列 题解《挑战程序设计竞赛》
地址 http://poj.org/problem?id=2431 题解 朴素想法就是dfs 经过该点的时候决定是否加油 中间加了一点剪枝 如果加油次数已经比已知最少的加油次数要大或者等于了 那么就剪 ...
- poj 2431 Expedition 贪心+优先队列 很好很好的一道题!!!
Expedition Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10025 Accepted: 2918 Descr ...
- POJ 2431 Expedition(优先队列、贪心)
题目链接: 传送门 Expedition Time Limit: 1000MS Memory Limit: 65536K 题目描述 驾驶一辆卡车行驶L单位距离.最开始有P单位的汽油.卡车每开1 ...
- poj 2431 Expedition
Expedition Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 12980 Accepted: 3705 Descr ...
随机推荐
- android 项目学习随笔六(网络缓存)
1. 对SharePreference的封装 import android.content.Context; import android.content.SharedPreferences; /** ...
- mysql笔记01 MySQL架构与历史、Schema与数据类型优化
MySQL架构与历史 1. MySQL架构推荐参考:http://www.cnblogs.com/baochuan/archive/2012/03/15/2397536.html 2. MySQL会解 ...
- 非常好!!!【从头开始写操作系统系列】实现一个-GDT(1)【转】
转自:http://blog.csdn.net/luoyhang003/article/details/47338019 权声明:本文为博主原创文章,未经博主允许不得转载.(文章来源:http://b ...
- Spring使用p名称空间配置属性
给XML配置文件"减肥"的另一个选择就是使用p名称空间,从 2.0开始,Spring支持使用名称空间的可扩展配置格式.这些名称空间都是基于一种XML Schema定义.事实上,我们 ...
- 苹果app审核的规则总结
1.1为App Store开发程序,开发者必须遵守 Program License Agreement (PLA).人机交互指南(HIG)以及开发者和苹果签订的任何协议和合同.以下规则和示例旨在帮助开 ...
- ACM题目————小A的计算器
Description 以往的操作系统内部的数据表示都是二进制方式,小A新写了一个操作系统,系统内部的数据表示为26进制,其中0-25分别由a-z表示. 现在小A要在这个操作系统上实现一个计算器,这 ...
- hdu 1061 Rightmost Digit
解决本题使用数学中的快速幂取余: 该方法总结挺好的:具体参考http://www.cnblogs.com/PegasusWang/archive/2013/03/13/2958150.html #in ...
- Python中的变量、引用、拷贝和作用域
在Python中,变量是没有类型的,这和以往看到的大部分编辑语言都不一样.在使用变量的时候,不需要提前声明,只需要给这个变量赋值即可.但是,当用变量的时候,必须要给这个变量赋值:如果只写一个变量,而没 ...
- android 比较靠谱的图片压缩
第一:我们先看下质量压缩方法: private Bitmap compressImage(Bitmap image) { ByteArrayOutputStream baos = new ByteAr ...
- Android LayoutInflater原理分析
相信接触Android久一点的朋友对于LayoutInflater一定不会陌生,都会知道它主要是用于加载布局的.而刚接触Android的朋友可能对LayoutInflater不怎么熟悉,因为加载布局的 ...