zoukankan      html  css  js  c++  java
  • poj 2431 Expedition 贪心

    简单的说说思路,如果一开始能够去到目的地那么当然不需要加油,否则肯定选择能够够着的油量最大的加油站加油,,不断重复这个贪心的策略即可。

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    using namespace std;
    const int maxn=1e4+9;
    int dist,p,n;
    struct S
    {
        int d,f;
        bool operator <(const S & xx) const
        {
            return d<xx.d;
        }
    }stop[maxn];
    
    struct cmp
    {
        bool operator ()(const S &a,const S &b) const
        {
            return a.f<b.f;
        }
    };
    
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            for(int i=1;i<=n;i++)
            scanf("%d %d",&stop[i].d,&stop[i].f);
            scanf("%d %d",&dist,&p);
            for(int i=1;i<=n;i++)
            stop[i].d=dist-stop[i].d;
            sort(stop+1,stop+1+n);
    
            int ans=0,t=1;
            bool flag=true;
            priority_queue <S,vector<S>,cmp> q;
            while(p<dist)
            {
                while(t<=n&&stop[t].d<=p) q.push(stop[t++]);
                if(q.empty())
                {
                    flag=false;
                    break;
                }
                ans++;
                p+=q.top().f;
                q.pop();
            }
            if(flag) cout<<ans<<endl;
            else cout<<-1<<endl;
        }
        return 0;
    }
    


  • 相关阅读:
    1703技术笔录
    技术开发感想
    1701技术随笔
    12月份技术随笔
    光照效果函数
    冰冻效果
    反色效果函数
    哈哈镜效果
    黑白效果函数
    羽化效果
  • 原文地址:https://www.cnblogs.com/james1207/p/3343466.html
Copyright © 2011-2022 走看看