uva 1203(优先队列)

Posted 发牌员

tags:

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

无话可说,我记得自己以前做过的啊,为什么显示没做过呢。。。。。。

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <queue>
using namespace std;
const int maxn=1000+100;
struct note
{
    int id;
    int num;
    int jal;
    bool operator <(const note &p) const
    {
        return (num>p.num)||(num==p.num&&id>p.id);
    }
}aa[maxn];
int main()
{   string ss;
    int cnt=0;
    priority_queue<note> pq;
     while(cin >> ss)
     {
         if(ss[0]==R)
         {
              cnt++;
             scanf("%d%d",&aa[cnt].id,&aa[cnt].num);
             aa[cnt].jal=aa[cnt].num;
             pq.push(aa[cnt]);
         }
         else break;
     }
     int k;
     scanf("%d",&k);
     while(k--)
     {
         note nn=pq.top();
         pq.pop();
         printf("%d\n",nn.id);
         nn.num=nn.num+nn.jal;
         pq.push(nn);
     }
    return 0;
}

 

以上是关于uva 1203(优先队列)的主要内容,如果未能解决你的问题,请参考以下文章

UVA 11573 - Ocean Currents(BFS+优先队列)

优先队列-UVA10603

UVA-10603-Fill(BFS+优先队列)

uva 11997(优先队列)

Uva 1153 Keep the Customer Satisfied (贪心+优先队列)

UVa10954 Add All (Huffman编码,优先队列)