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 }
  • 相关阅读:
    C# Math.Round的枚举参数
    Literature Review: Incremental Segment-Based Localization in 3D Point Clouds
    Literature Review: Benchmarking 6DOF Outdoor Visual Localization in Changing Conditions
    Literature Review: Improving Image-Based Localization by Active Correspondence Search
    Literature Review: 基于稀疏直接法的建图
    论文阅读: 基于SLAM的使用GPS和鱼眼相机第Integrity Monitoring
    论文阅读: v-charge项目: 电动车的自动泊车和充电
    论文阅读: Infrastructure-Based Calibration of a Multi-Camera Rig
    论文阅读: Building a 3-D Line-Based Map Using Stereo SLAM
    论文阅读: VITAMIN-E: Extremely Dense Feature Points
  • 原文地址:https://www.cnblogs.com/a1225234/p/4817576.html
Copyright © 2011-2022 走看看