Alisha’s Party

Time Limit: 3000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 7971    Accepted Submission(s): 1833

Description

Princess Alisha invites her friends to come to her birthday party. Each of her friends will bring a gift of some value v, and all of them will come at a different time. Because the lobby is not large enough, Alisha can only let a few people in at a time. She decides to let the person whose gift has the highest value enter first.

Each time when Alisha opens the door, she can decide to let p people enter her castle. If there are less than p people in the lobby, then all of them would enter. And after all of her friends has arrived, Alisha will open the door again and this time every friend who has not entered yet would enter.

If there are two friends who bring gifts of the same value, then the one who comes first should enter first. Given a query n Please tell Alisha who the n−th person to enter her castle is.

Input

The first line of the input gives the number of test cases, T , where 1≤T≤15.

In each test case, the first line contains three numbers k,m and q separated by blanks. k is the number of her friends invited where 1≤k≤150,000. The door would open m times before all Alisha’s friends arrive where 0≤m≤k. Alisha will have q queries where 1≤q≤100.

The i−th of the following k lines gives a string Bi, which consists of no more than 200 English characters, and an integer vi, 1≤vi≤108, separated by a blank. Bi is the name of the i−th person coming to Alisha’s party and Bi brings a gift of value vi.

Each of the following m lines contains two integers t(1≤t≤k) and p(0≤p≤k) separated by a blank. The door will open right after the t−th person arrives, and Alisha will let p friends enter her castle.

The last line of each test case will contain q numbers n1,...,nq separated by a space, which means Alisha wants to know who are the n1−th,...,nq−th friends to enter her castle.

Note: there will be at most two test cases containing n>10000.

Output

For each test case, output the corresponding name of Alisha’s query, separated by a space.

Sample Input

1
5 2 3
Sorey 3
Rose 3
Maltran 3
Lailah 5
Mikleo 6
1 1
4 2
1 2 3

Sample Output

Sorey Lailah Rose
 

题目大意

Alisha要举办一个party,会有k个来宾,每个来宾会有一个价值为vi的礼物,但是Alisha不能同时接待这么多人,于是她会分好几次打开大门,放几个人进来,题目会给出m对数,分别是t和p,即在第t个人到达后,打开大门,在外面排队的前p个人进来。排队的方式是根据礼物的价值从高到低排,价值一样的先来的站前面。最后所有的人都会进来。最后给出q次查询,询问第几个进来的人是谁。

比如题目中,Sorey先来,Alisha在第一个人来到之后,打开门放一个人进来,也就是Sorey。然后Rose、Maltran、Lailah都来了,因为Lailah的礼物贵重,所以他排在前面,Maltran的礼物和Rose一样,排在Rose后面,现在Alisha开门放前两个人进来,也就是Lailah和Rose。然后Mikleo拿着价值为6的礼物站到了Maltran的前面,最后他们都进来了,于是进门的顺序是:Sorey Lailah Rose Mikleo Maltran.对于三次查询 输出的是前三个人的名字。

分析

这个题目显然是要采用优先队列,但是我总是RE,之后看了别人的代码才恍然大悟:题目给出的m对数,t不一定是按顺序来的,也就是说样例中的 1 1 和 4 2 是可以反过来的!!所以不能在输入的时候就完成模拟,这是我一直RE的原因(原来RE也有可能是这样的.....小弱鸡学到了)

代码实现

#include<bits/stdc++.h>

using namespace std;

typedef struct node
{
int vul;
int num;
char names[];
friend bool operator < (const node & a,const node & b)
{
return a.vul < b.vul || (a.vul == b.vul && a.num > b.num);
}
}vistor; priority_queue <vistor> pq; vistor v[];
int anss[],w[]; int main()
{
int t;
cin>>t;
while(t--)
{
memset(v,,sizeof(v));
memset(anss,,sizeof(anss));
memset(w,,sizeof(w));
while(!pq.empty())
pq.pop();
int k,m,q,i,j,s=,r=,x,y;
scanf("%d%d%d",&k,&m,&q);
for(i=;i<=k;i++)
{
scanf("%s",v[i].names);
scanf("%d",&v[i].vul);
v[i].num=i;
}
for(i=;i<=m;i++)
{
scanf("%d %d",&x,&y);
w[x]+=y;
}
for(i=;i<=k;i++)
{
pq.push(v[i]);
while(w[i]--)
{
if(!pq.empty())
{
anss[s++]=pq.top().num;
pq.pop();
}
}
}
while(!pq.empty())
{
anss[s++]=pq.top().num;
pq.pop();
}
for(i=;i<=q;i++)
{
scanf("%d",&x);
if(i!=q)
printf("%s ",v[anss[x]].names);
else
printf("%s\n",v[anss[x]].names);
}
}
}

HDU 5437 & ICPC 2015 Changchun Alisha's Party(优先队列)的更多相关文章

  1. ACM ICPC 2015 Moscow Subregional Russia, Moscow, Dolgoprudny, October, 18, 2015 G. Garden Gathering

    Problem G. Garden Gathering Input file: standard input Output file: standard output Time limit: 3 se ...

  2. ACM ICPC 2015 Moscow Subregional Russia, Moscow, Dolgoprudny, October, 18, 2015 D. Delay Time

    Problem D. Delay Time Input file: standard input Output file: standard output Time limit: 1 second M ...

  3. HDU 5437 Alisha’s Party (优先队列)——2015 ACM/ICPC Asia Regional Changchun Online

    Problem Description Princess Alisha invites her friends to come to her birthday party. Each of her f ...

  4. (并查集)Travel -- hdu -- 5441(2015 ACM/ICPC Asia Regional Changchun Online )

    http://acm.hdu.edu.cn/showproblem.php?pid=5441 Travel Time Limit: 1500/1000 MS (Java/Others)    Memo ...

  5. (二叉树)Elven Postman -- HDU -- 54444(2015 ACM/ICPC Asia Regional Changchun Online)

    http://acm.hdu.edu.cn/showproblem.php?pid=5444 Elven Postman Time Limit: 1500/1000 MS (Java/Others)  ...

  6. (线段树 区间查询)The Water Problem -- hdu -- 5443 (2015 ACM/ICPC Asia Regional Changchun Online)

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=5443 The Water Problem Time Limit: 1500/1000 MS (Java/ ...

  7. hdu 5437 Alisha’s Party 模拟 优先队列

    Problem Description Princess Alisha invites her friends to come to her birthday party. Each of her f ...

  8. HDU 5475(2015 ICPC上海站网络赛)--- An easy problem(线段树点修改)

    题目链接 http://acm.hdu.edu.cn/showproblem.php?pid=5475 Problem Description One day, a useless calculato ...

  9. hdu 5437 Alisha’s Party 优先队列

    Alisha’s Party Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/contests/contest_sh ...

随机推荐

  1. 关于Environment类的使用

    import org.springframework.core.env.Environment; EnvironmentAware 如何引用这个类1.可以通过 @Autowired织入Environm ...

  2. Spring CommonsMultipartResolver 上传文件

    转:http://yanglei008.iteye.com/blog/246920 ...Controller...{ // 创建一个通用的多部分解析器 CommonsMultipartResolve ...

  3. jquery focus()方法 语法

    jquery focus()方法 语法 作用:当元素获得焦点时,发生 focus 事件.大理石平台价格 触发focus事件语法:$(selector).focus() 将函数绑定到focus事件语法: ...

  4. 「HAOI2016」食物链

    题目链接 解题思路 简单的DAG上DP即可. 参考程序 #include <bits/stdc++.h> using namespace std; const int Maxn = 100 ...

  5. Struts初学

    自我概述 今天看了Struts,感觉这是个非常好用的东西!虽然它已经过时了,被springMVC取代了,但是仍然有了解的价值. 可是在学习过程中遇到了很多问题,比如其中一些原理很是抽象,有一些问题莫名 ...

  6. Java中 intValue,parseInt,Valueof 这三个关键字的区别

    intValue()是把Integer对象类型变成int的基础数据类型: parseInt()是把String 变成int的基础数据类型: Valueof()是把给定的String参数转化成Integ ...

  7. C# 强命名程序集,防止dll被修改,混淆下发布

    未能加载文件或程序集“Jonckers.Service.RedisCacheEngineExtend, Version=1.0.0.0, Culture=neutral, PublicKeyToken ...

  8. sql四种连接方式

    1.内连接(inner  join)只有两个表相匹配的行才能在结果集中显示出来2.左连接(left  join)以左表为主,左表所有的数据都会在结果集中出现,右表根据左表对应的数据显示,与左表匹配的数 ...

  9. flutter 添加全局环境变量

    flutter安装好了之后 要添加全局环境变量才可以在终端通过flutter命令来操作 安装flutter环境变量 vim ~/.bash_profile (不存在就创建,添加下面一行命令) expo ...

  10. linux配置多个ip

    linux配置多个ip /sbin/ifconfig eth0:1 172.19.121.180 broadcast 172.19.121.255  netmask 255.255.255.0 up ...