HDU 1509 Windows Message Queue

來源:互聯網
上載者:User

標籤:include   using   als   cstring   cpp   long   ace   operator   name   

水題。用來熟悉優先隊列。


有兩個鍵,一個是優先順序。一個是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+10using 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);        }    }}


HDU 1509 Windows Message Queue

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.