HDOJ 1873 看病要排队 (优先队列+贪心)

5 篇文章 0 订阅

http://acm.hdu.edu.cn/showproblem.php?pid=1873
中文题就不写题意了。

就三个医生,所以可以直接暴力开三个优先队列,第一关键字是优先级从大到小,第二关键字是来看病的时候从小到大,这里重载小于号要注意,因为STL里的priority_queue默认是大根堆,重载小于号时,返回小于其实堆顶是最大值。
然后就模拟这个过程即可,IN的时候push(),OUT的时候输出top()并pop()。

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <stack>
#include <cstring>
#include <queue>

using namespace std;
int n;
struct node{
    int b,t;

};
bool operator < (const node& x,const node& y){
        if(x.b==y.b) return x.t>y.t;
        return x.b<y.b;
}
priority_queue <node> q1,q2,q3;

int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        int num=0,x,y;
        char s[10];
        q1 = priority_queue<node>();
        q2 = priority_queue<node>();
        q3 = priority_queue<node>();
        for(int i=1;i<=n;i++)
        {
            scanf("%s",s);
            if(s[0]=='I')
            {
                num++;
                scanf("%d%d",&x,&y);
                node tmp;
                tmp.t=num;
                tmp.b=y;
                switch(x)
                {
                case 1:
                    q1.push(tmp);break;
                case 2:
                    q2.push(tmp);break;
                case 3:
                    q3.push(tmp);break;
                }
            }
            if(s[0]=='O')
            {
                scanf("%d",&x);
                switch(x)
                {
                case 1:
                    {
                        if(q1.empty())
                            printf("EMPTY\n");
                        else
                        {
                            printf("%d\n",q1.top().t);
                            q1.pop();
                        }
                        break;
                    }
                case 2:
                    {
                        if(q2.empty())
                            printf("EMPTY\n");
                        else
                        {
                            printf("%d\n",q2.top().t);
                            q2.pop();
                        }
                        break;
                    }
                case 3:
                    {
                        if(q3.empty())
                            printf("EMPTY\n");
                        else
                        {
                            printf("%d\n",q3.top().t);
                            q3.pop();
                        }
                        break;
                    }
                }

            }
        }
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值