poj3614 Sunscreen 贪心+单调队列

牛按最小值排序,防晒霜按权值排序。

把最小值低于当前防晒霜权值的牛加入队列。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
struct node
{
    int x,y;
}a[3000];
struct oil
{
    int k,num;
}b[3000];
bool cmp(oil aa,oil bb)
{
    return aa.k , greater > q;
    sort(b+1,b+1+l,cmp);
    sort(a+1,a+n+1,cmp2);
    node cur;
    int ans=0;
    int j=1;
    for(int i=1;i<=l;i++)
        {
            while(j<=n&&a[j].x<=b[i].k)
            {
                q.push(a[j].y);         //所有符合条件的牛,把他们的最大承受值放入优先队列
                j++;
            }
            while(q.size()!=0&&b[i].num!=0)//每次取出最大值中的最小者。
            {
                int x=q.top();
                q.pop();
                if(x

你可能感兴趣的:(poj,贪心)