zoukankan      html  css  js  c++  java
  • poj 2431 【优先队列】

    poj 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. 

    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

    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.

    Sample Input

    4
    4 4
    5 2
    11 5
    15 10
    25 10
    

    Sample Output

    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.
    题意:一辆卡车从起点行驶到终点路程为L,每行驶单位距离花费单位油量。起始时有油量P。在路途中有N个加油站,距离终点距离为Ai,有油量Bi。车如果没油就不能到达终点,假设车油箱无限大。问最少加几次油才能到达终点,不能达到输出-1。
    题解:把加油站距离转化为到起点的距离便于操作。可以把问题看成在经过第i个加油站时,获得了加Bi油量的权利,等以后需要加油了就直接加。显然为了使加油次数最少,需要每次选尽可能大的Bi加油,所以需要优先队列。为方便操作,把终点也看成一个加油站。
     
     1 #include<cstdio>
     2 #include<cstring>
     3 #include<iostream>
     4 #include<algorithm>
     5 #include<queue>
     6 using namespace std;
     7 struct No{
     8     int A;
     9     int B;
    10 };
    11 No C[10050];
    12 int N,P,L;
    13 
    14 bool cmp(No a,No b)
    15 {
    16     return a.A>b.A;
    17 }
    18 
    19 int main()
    20 {
    21     int ans=0;
    22     while(cin>>N)
    23     {
    24         for(int i=0;i<N;i++) cin>>C[i].A>>C[i].B;
    25         cin>>L>>P;
    26         sort(C,C+N,cmp);N++;
    27         C[N].A=L,C[N].B=0;
    28         int pos=0,tank=P;
    29         priority_queue<int> que;
    30         for(int i=0;i<N;i++)
    31         {
    32             C[i].A=L-C[i].A;
    33             int d=C[i].A-pos;
    34             while(tank-d<0)
    35             {
    36                 if(que.empty()){
    37                     cout<<"-1"<<endl;
    38                     return 0;
    39                 }
    40                 tank+=que.top();
    41                 que.pop();
    42                 ans++;
    43             }
    44             tank-=d;
    45             pos=C[i].A;
    46             que.push(C[i].B);
    47         }
    48         cout<<ans<<endl;
    49     }
    50     return 0;
    51 }
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
  • 相关阅读:
    使用mongodb保存爬取豆瓣电影的数据
    使用scrapy爬取阳光热线问政平台
    使用scrapy爬取手机版斗鱼主播的房间图片及昵称
    使用selenium + chrome爬取中国大学Mooc网的计算机学科的所有课程链接
    使用scrapy爬取腾讯社招,获取所有分页的职位名称及chaolia、类型、人数、工作地点、发布日期超链接
    python2使用bs4爬取腾讯社招
    使用python2爬取百度贴吧指定关键字和分页帖子楼主所发的图片
    提问的智慧
    深刻理解系统架构师和系统分析师定义
    Redis基础数据结构与核心原理
  • 原文地址:https://www.cnblogs.com/zxhyxiao/p/8537305.html
Copyright © 2011-2022 走看看