题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1873

题解:

题目已经说出了解题方法:优先队列。但是之前没有学过优先队列,而且这题还是在现场赛做的。由于不会写优先队列的排序函数,所以自己想了个方法,觉得这种思维还可以,还是用优先队列。

队列priority_queue<int>q[4], 那么q是从大到小排列的,所以我就想将病人的优先级和编号放到一个int类型中,病人编号最大为2000,优先级最大为10。

由于排序的规则是先按优先级,再按编号,所以优先级的影响大,编号的影响小,那么可以将病人的信息整合到一个int中:102000。但是这样又出现了一个问题,

不同优先级的人先后解决了,但是相同优先级,不同编号的病人的顺序就搞反了。
相同优先级而编号小的病人理应排在前面,但却排在了后面,因为优先队列按从大到小排列。

怎么解决呢?由于编号的范围为1~2000,所以就想到了对编号进行对2000的取补,就是编号为k时,存进int里的,就应该是(2000-k),这样问题就解决了。

想想这种取补的方法应该挺好的。

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<set>
#include<string>
#include<map>
#include<vector>
#include<queue> #define LL long long using namespace std; priority_queue<int>q[4];
char s[100]; int main()
{ int n,cnt,doc,pri,sum;
while(scanf("%d",&n)!=EOF)
{
for(int i = 1; i<=3; i++)
while(!q[i].empty()) q[i].pop(); cnt = 0; for(int i = 0; i<n; i++)
{
scanf("%s",s);
if(s[0]=='I' && s[1]=='N')
{
scanf("%d%d",&doc,&pri);
cnt++; sum = pri*10000 + (2000-cnt); q[doc].push(sum);
} else
{
scanf("%d",&doc); if(q[doc].empty())
puts("EMPTY");
else
{
sum = q[doc].top();
q[doc].pop(); sum %= 10000;
sum = 2000-sum;
printf("%d\n",sum);
} } }
} return 0;
}

优先队列:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<set>
#include<string>
#include<map>
#include<vector>
#include<queue> #define LL long long using namespace std; struct node
{
int pri,x; bool operator <(const node& t2) const
{
if(pri==t2.pri) return x>t2.x;
return pri<t2.pri;
}
};
node now;
priority_queue<node>q[4];
char s[100]; int main()
{ int n,cnt,doc,pri,sum;
while(scanf("%d",&n)!=EOF)
{
for(int i = 1; i<=3; i++)
while(!q[i].empty()) q[i].pop(); cnt = 0; for(int i = 0; i<n; i++)
{
scanf("%s",s);
if(s[0]=='I' && s[1]=='N')
{
scanf("%d%d",&doc,&pri); now.pri = pri;
now.x = ++cnt;
q[doc].push(now);
} else
{
scanf("%d",&doc); if(q[doc].empty())
puts("EMPTY");
else
{
now = q[doc].top();
q[doc].pop();
printf("%d\n",now.x);
}
}
}
}
return 0;
}

HDU1873 看病要排队 —— 优先队列(STL)的更多相关文章

  1. hdu1873 看病要排队 优先队列

    看病要排队 Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status ...

  2. HDU1873 看病要排队【模拟+优先队列】

    看病要排队 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Subm ...

  3. hdu1873 看病要排队【优先队列】

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1873 看病要排队 Time Limit: 3000/1000 MS (Java/Others)     ...

  4. hdu1873 看病要排队(结构体优先队列)

    看病要排队 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Subm ...

  5. HDU 1873 看病要排队 优先队列

    Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s) ...

  6. HDU-1873 看病要排队(队列模拟)

    看病要排队 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Subm ...

  7. HDUOj 看病要排队 优先队列的使用 题目1873

    STL优先队列的具体描写叙述 http://blog.csdn.net/yueloveme/article/details/47106639 题目地址:http://acm.hdu.edu.cn/s ...

  8. hdoj 1873 看病要排队【优先队列】

    看病要排队 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

  9. hdu1837 看病要排队(优先队列)

    看病要排队 Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submi ...

随机推荐

  1. ML | SVM

    What's xxx An SVM model is a representation of the examples as points in space, mapped so that the e ...

  2. const T、const T*、T *const、const T&、const T*& 的区别

    原文地址: http://blog.csdn.net/luoweifu/article/details/45600415 这里的T指的是一种数据类型,可以是int.long.doule等基本数据类型, ...

  3. Codeforces Gym 100203G Good elements 暴力乱搞

    原题链接:http://codeforces.com/gym/100203/attachments/download/1702/statements.pdf 题解 考虑暴力的复杂度是O(n^3),所以 ...

  4. JAVA通过使用sort方法排序

    java 代码: 对集合排序: //升序public void listSort1(){ List<Integer> list = new ArrayList<Integer> ...

  5. HDU5618 Jam's problem again

    CDQ分治模板题 #include<cstdio> #include<cctype> #include<algorithm> #include<cstring ...

  6. 【springcloud】使用@FEIGNCLIENT时,报JAVA.LANG.NOCLASSDEFFOUNDERROR: FEIGN/FEIGN$BUILDER错

    引用地址:http://www.cnblogs.com/ellacan/p/8822374.html 错误信息: Caused by: java.lang.ClassNotFoundException ...

  7. 【Protocol Buffers】grpc默认使用的Google 开源的一套成熟的结构数据序列化机制

    grpc默认使用的Google 开源的一套成熟的结构数据序列化机制 参考地址:https://blog.csdn.net/shensky711/article/details/69696392 参考地 ...

  8. 【报错】spring整合activeMQ,pom.xml文件缺架包,启动报错:Caused by: java.lang.ClassNotFoundException: org.apache.xbean.spring.context.v2.XBeanNamespaceHandler

    spring版本:4.3.13 ActiveMq版本:5.15 ======================================================== spring整合act ...

  9. Build FTP Server on Windows

    1. Use the self-ftp component service with windows control panel / program / start or close windows ...

  10. redis主从连接不成功错误

    redis主从连接不成功错误 学习了:https://blog.csdn.net/wzqzhq/article/details/64919133 需要增加 masterauth  password.. ...