博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu5437 优先队列 长春网赛
阅读量:4978 次
发布时间:2019-06-12

本文共 742 字,大约阅读时间需要 2 分钟。

优先队列做,然后遍历人数。

#include 
#include
#include
#define maxn 150010using namespace std;struct node{ int id; int val; friend bool operator < (node a ,node b){ if(a.val==b.val) return a.id > b.id; return a.val < b.val; }}a[maxn];priority_queue
q;int n,x[maxn],ans[maxn];char name[maxn][210];int main(){ int i,j,t,m,p; scanf("%d", &t); while(t--) { scanf("%d %d %d", &n, &m, &p); memset(x,0,sizeof(x)); for(i=1; i<=n; i++) { scanf("%s %d", name[i], &a[i].val); a[i].id=i; ans[i]=0; } for(i=0; i

 

转载于:https://www.cnblogs.com/sweat123/p/4812438.html

你可能感兴趣的文章
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>
HOT SUMMER 每天都是不一样,积极的去感受生活 C#关闭IE相应的窗口 .
查看>>
optionMenu-普通菜单使用
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>