HDU 1509 Windows Message Queue

水题,用来熟悉优先队列。


有两个键,一个是优先级,一个是ID。按优先级排,优先级一样就按ID排。


#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
{
    char str[101];
    int s;
    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()
{
    priority_queue<lx> pq;

    char head[11];
    int Id=0;
    while(scanf("%s",head)!=EOF)
    {
        if(strcmp(head,"GET")==0)
        {
            if(pq.empty())
                puts("EMPTY QUEUE!");
            else
            {
                lx now;
                now=pq.top();
                pq.pop();
                printf("%s %d\n",now.str,now.s);
            }
        }
        else if(strcmp(head,"PUT")==0)
        {
            lx now;
            scanf("%s%d%d",now.str,&now.s,&now.value);
            now.ID=Id++;
            pq.push(now);
        }
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值