POJ 3190 Stall Reservations

题意:一些奶牛要在指定的时间内挤牛奶,而一个机器只能同时对一个奶牛工作。给你每头奶牛的指定时间的区间,问你最小需要多少机器。

题解:感觉是道经典题,遇到很多遍都好像是弃了。。。。 只能借鉴别人思路了。。。。

维护一个优先队列,里面以已经开始挤奶的奶牛的结束时间早为优先,然后每次只需要检查当前是否有奶牛的挤奶工作已经完成的机器即可,若有,则换那台机器进行工作。若没有,则加一台新的机器。


代码如下

#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<algorithm>
#include <iostream>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
#define INF 0x3f3f3f3f
#define maxn 50010
using namespace std;
typedef long long ll;

struct Node
{
    int l,r,pos;
    bool operator <(const Node &a)const
    {
        if(r==a.r)
            return l>a.l;
        return r>a.r;
    }
}a[maxn];
int cmp(Node x,Node y)
{
    if(x.l == y.l)
        return x.r < y.r;
    return x.l < y.l;
}
priority_queue<Node> q;
int main()
{
    int n;
    scanf("%d",&n);
    for(int i = 0; i < n; i++)
    {
        scanf("%d%d",&a[i].l,&a[i].r);
        a[i].pos = i;
    }
    sort(a,a+n,cmp);
    int cnt = 1,ans[maxn] = {0};
    ans[a[0].pos] = 1;
    q.push(a[0]);
    for(int i = 1; i < n; i++)
    {
        if(!q.empty() && q.top().r < a[i].l)
        {
            ans[a[i].pos] = ans[q.top().pos];
            q.pop();
        }
        else
            ans[a[i].pos] = ++cnt;
        q.push(a[i]);
    }
    printf("%d\n",cnt);
    for(int i = 0; i < n; i++)
        printf("%d\n",ans[i]);
    while(!q.empty())
        q.pop();
    return 0;

}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值