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

 

#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;
}


 

 

相关文章:

  • 2021-09-25
  • 2019-08-10
  • 2022-12-23
  • 2021-07-09
  • 2021-07-02
  • 2021-08-26
  • 2021-05-27
猜你喜欢
  • 2022-02-25
  • 2021-11-26
  • 2022-12-23
  • 2017-12-12
  • 2021-07-04
  • 2021-09-22
相关资源
相似解决方案