zoukankan      html  css  js  c++  java
  • Eoj 1855. Expedition (贪心)

    题面

    单点时限: 2.0 sec

    内存限制: 256 MB

    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 units distant) down a long, winding road. On this road, between the town and the current location of the truck, there are fuel stops where the cows can stop to acquire additional fuel (.. 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 units away from the town and has units of fuel .

    Determine the minimum number of stops needed to reach the town, or if the cows cannot reach the town at all.

    输入格式
    Line : A single integer,
    Lines ..: 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 : Two space-separated integers, and
    输出格式
    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 .

    思路

    每次我们都选择我们可以到达的所有加油站的最大者,用优先队列维护一下。

    代码实现

    #include<cstdio>
    #include<iostream>
    #include<algorithm>
    #include<queue>
    #include<cmath>
    using namespace std;
    const int maxn=10010;
    struct node {
        int dis,flu;
    }e[maxn];
    int start,distancea;
    
    bool cmp (node a,node b) {
        return a.dis>b.dis;
    } 
    int main () {
        int n;
        cin>>n;
        for (int i=1;i<=n;i++) {
           int x,y;
           cin>>x>>y;
           node t={x,y};
           e[i]=t;
        }
        cin>>distancea>>start;
        sort (e+1,e+1+n,cmp);
        int cur=start;
        int cnt=0,k=1;
        priority_queue<int > q;
        if (start>=distancea) cout<<0<<endl;
        else {
           while (1) {
               if (cur>=distancea) break;
    
               for (int i=k;i<=n;i++) {
                   if (distancea-e[i].dis<=cur) {
                       q.push (e[i].flu);
                   }
                   else {
                       k=i;
                       break;
                   }
               }
               if (q.empty ()) {
                   cnt=-1;
                   break;
               }
               cur+=q.top ();
               q.pop ();
               cnt++;
           }
           
           cout<<cnt<<endl;
        }
        return 0;
    }
    
  • 相关阅读:
    ASE19 团队项目 模型组 scrum report集合
    ASE19团队项目alpha阶段model组 scrum2 记录
    ASE19团队项目alpha阶段model组 scrum1 记录
    ASE第二次结对编程——Code Search
    jdk中集成的jre和单独安装的jre有什么区别?
    window, linux, mac 比较文件和文件夹的区别
    Java 调用python、ruby 等脚本引擎
    微软软件工程 第一周博客作业
    绩效考核(2018.5.28~2018.6.3)
    数据库需求文档
  • 原文地址:https://www.cnblogs.com/hhlya/p/13374718.html
Copyright © 2011-2022 走看看