• POJ 2431Expedition


    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.
     
    挑战程序设计上边的例题,自己傻,搞了1个多小时,然后还是瞎胡写。
    在卡车开往终点的途中,只有在加油站才可以加油。但是,如果认为“在到达加油站 i 时,就获得了一次在任何时候就能加 Bi 单位汽油的权利”。在解决问题上是一样的。经过这样的变通之后,在需要加油的时候,认为在之前的加油站里已经加过油了。
    题目中给的是每个加油站距离终点的距离,我们转换一下,让 Ai 是加油站距起点的距离。
    在经过加油站时,往优先队列里加入Bi[]
    当油箱空了
      如果优先队列也是空的,则到达不了终点
      否则,取出优先队列里最大的元素,给卡车加油。
     1 #include <cstdio>
     2 #include <algorithm>
     3 #include <queue>
     4 
     5 using namespace std;
     6 const int MAXN = 10000 + 10;
     7 int L, P, N;
     8 struct node{
     9     int a, b;
    10 }p[MAXN];
    11 
    12 bool cmp(const struct node p1, const struct node p2)
    13 {
    14     return p1.a < p2.a;
    15 }
    16 
    17 void solve()
    18 {
    19     p[N].a = L;
    20     p[N].b = 0;
    21     N++;
    22 
    23     priority_queue<int> que;
    24     int pos = 0, tank = P, ans = 0;
    25     for(int i = 0; i != N; ++i)
    26     {
    27         int d = p[i].a - pos;
    28         while(tank - d < 0)
    29         {
    30             if(que.empty())
    31             {
    32                 puts("-1");
    33                 return;
    34             }
    35             tank += que.top();
    36             que.pop();
    37             ans++;
    38         }
    39         tank -= d;
    40         pos = p[i].a;
    41         que.push(p[i].b);
    42     }
    43     printf("%d
    ", ans);
    44 }
    45 
    46 int main()
    47 {
    48     //freopen("in.txt", "r", stdin);
    49     while(~scanf("%d" ,&N))
    50     {
    51        for(int i = 0; i != N; ++i)
    52        {
    53            scanf("%d %d", &(p[i].a), &(p[i].b));
    54            //printf("%d %d
    ", p[i].a, p[i].b);
    55        }
    56 
    57        scanf("%d %d", &L, &P);
    58         for(int i = 0; i != N; ++i)
    59             p[i].a = L - p[i].a;
    60         sort(p, p+N, cmp);
    61 
    62         solve();
    63     }
    64     return 0;
    65 }
    View Code
  • 相关阅读:
    常用的汇编指令与技巧
    汇编调用c函数为什么要设置栈
    lp2356
    String函数的总结
    2019-5-22训练
    STL——substr
    STL 反转函数 (reverse() )
    2019-5-15训练——深搜
    高精度加法
    八皇后题解
  • 原文地址:https://www.cnblogs.com/ya-cpp/p/4462007.html
Copyright © 2020-2023  润新知