zoukankan      html  css  js  c++  java
  • Expedition(优先队列)

    Expedition  点我
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 9465   Accepted: 2760

    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 #include <iostream>
     2 #include <queue>
     3 #include <cstdio>
     4 #include <algorithm>
     5 using namespace std;
     6 struct node
     7 {
     8     int a;
     9     int b;
    10 };
    11 int cmp(node x,node y)
    12 {
    13     return x.a<=y.a;
    14 }
    15 int solve(int n)
    16 {
    17     priority_queue<int> s;
    18     int i,pos=0,tank=0,ans=0;
    19     int dis;
    20     node u[100005];
    21     int L,P;
    22     for(i=n-1;i>=0;i--)
    23         cin>>u[i].a>>u[i].b;
    24     cin>>L>>tank;
    25     u[n].a=L;
    26     u[n].b=0;
    27     for(i=0;i<n;i++)
    28         u[i].a=L-u[i].a;
    29     sort(u,u+n,cmp);
    30     for(i=0;i<=n;i++)
    31     {
    32         dis=u[i].a-pos;
    33         while(tank<dis)
    34         {
    35             if(s.empty())
    36             {
    37                 cout<<-1<<endl;
    38                 return 0;
    39             }
    40             tank+=s.top();
    41             s.pop();
    42             ans++;
    43         }
    44         tank-=dis;
    45         s.push(u[i].b);
    46         pos=u[i].a;
    47     }
    48     cout<<ans<<endl;
    49     return 0;
    50 }
    51 int main()
    52 {
    53     int n;
    54     //freopen("in","r",stdin);
    55     while(cin>>n)
    56     {
    57         solve(n);
    58     }
    59     return 0;
    60 }
  • 相关阅读:
    小程序历程
    关于两个字符串用加号连接
    关于数据类型的取值范围的理解
    求最小公倍数和最大公约数
    js关于两个字符串的加减乘除运算
    a:hover + 兄弟选择器(标签选择)失效的解决方法
    ul和li标签实现列表
    小图标的使用(插入icon图标)
    水平垂直居中
    【转】JMeter学习(三十七)Jmeter录制手机app脚本
  • 原文地址:https://www.cnblogs.com/a1225234/p/4817576.html
Copyright © 2011-2022 走看看