HDU 1873 看病要排队

Posted gavanwanggw

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1873 看病要排队相关的知识,希望对你有一定的参考价值。

优先队列,水题。

三个医生。相应三个优先队列就能够了。

多组数据要初始化优先队列

#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
#include<algorithm>
#include<map>
#include<stack>
#include<iostream>
#include<list>
#include<set>
#include<vector>
#include<cmath>

#define INF 0x7fffffff
#define eps 1e-8
#define LL long long
#define PI 3.141592654
#define CLR(a,b) memset(a,b,sizeof(a))
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define FOR0(i,a,b) for(int i=a;i>=b;i--)
#define pb push_back
#define debug puts("==fuck==")
#define acfun std::ios::sync_with_stdio(false)

#define SIZE 20+10
using namespace std;
struct lx
{
    int value;
    int ID;
    friend bool operator <( lx a,lx b)
    {
        if(a.value==b.value)
            return a.ID>b.ID;
        return a.value<b.value;
    }
};
int main()
{
    int t;
    priority_queue<lx> q[4];
    int Id=1;
    while(scanf("%d",&t)!=EOF)
    {
        char head[11];
        scanf("%s",head);
        if(strcmp(head,"OUT")==0)
        {
            int value;
            scanf("%d",&value);
            if(q[value].empty())
                puts("EMPTY");
            else
            {
                lx now;
                now=q[value].top();
                q[value].pop();
                printf("%d\n",now.ID);
            }
        }
        else if(strcmp(head,"IN")==0)
        {
            int value;
            lx now;
            scanf("%d%d",&value,&now.value);
            now.ID=Id++;
            q[value].push(now);
        }
        t--;
        if(t==0)
        {
            FOR(i,1,4)
            {
                while(!q[i].empty())
                    q[i].pop();
            }
            Id=1;
        }
    }
}


以上是关于HDU 1873 看病要排队的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1873 看病要排队 —— priority_queue 的使用

hdu 1873 看病要排队(优先级队列)

hdu1873看病要排队

hdu1873(看病要排队)循环队列害死我了

HDU - 1873 看病要排队(优先队列)

HDU 1873 看病要排队