Alisha’s Party

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

Problem 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. Biis 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
 
Source
 
Recommend
 
 
 
 #include <iostream>
#include <vector>
#include <cstdio>
#include <queue>
#include <cstring>
#include <cstdlib>
#include <algorithm>
using namespace std;
#define P pair<int,int>
#define ph push_back
#define ll long long
#define N 150009
#define fi first
#define se second
int t,n,m,q;
struct Ma{
string s;
int val,id;
bool operator <(const Ma&a)const{
if(val!=a.val)
return val<a.val;
return id>a.id;
}
}ma[N];
struct Node{
int time,p;
}nod[N];
bool cmp(Node a,Node b)
{
return a.time<b.time;
}
string ret[N];
char ss[];
int main()
{
scanf("%d",&t);
while(t--)
{
scanf("%d%d%d",&n,&m,&q);
for(int i=;i<=n;i++)
{
scanf("%s%d",ss,&ma[i].val);
ma[i].s=ss;
ma[i].id=i;
}
for(int i=;i<m;i++)
{
scanf("%d%d",&nod[i].time,&nod[i].p);
}
sort(nod,nod+m,cmp);
priority_queue<Ma>que;
int pos=,cnt=;
for(int i=;i<m;i++)
{
while(pos<=nod[i].time){
que.push(ma[pos]);//pos容易写错
pos++;
}
for(int j=;j<nod[i].p;j++)
{
if(que.empty()) break;//小于p个人,都进去
Ma x=que.top();que.pop();
ret[cnt++]=x.s;
}
}
while(pos<=n)
{
que.push(ma[pos]);
pos++;
}
while(!que.empty()){
Ma x=que.top();que.pop();
ret[cnt++]=x.s;
}
int y;
for(int l=;l<q;l++)
{
scanf("%d",&y);
printf("%s%c",ret[y].c_str(),l==q-?'\n':' ');
}
}
return ;
}

最新文章

  1. Caliburn.Micro学习笔记(二)----Actions
  2. 【解决】SQL Server作业中Excel Application不能访问文件
  3. scala 学习笔记(06) OOP(下)多重继承 及 AOP
  4. hdu 5294 最短路+最大流 ***
  5. 如何成为一名合格甚至优秀的个人草根站长(转载自ChinaZ)
  6. 动手写一个Remoting接口测试工具(附源码下载)
  7. paper 79:MATLAB函数,interp1
  8. hdu 1005 java(System.out.println();与System.out.println(“\n”);)
  9. jqGrid简单介绍
  10. Git 的优点
  11. ssm整合说明与模板-Spring Spring MVC Mybatis整合开发
  12. 2.1 存储器域与PCI总线域
  13. 使用百度地图开发一个导航定位demo-android学习之旅(77)
  14. 项目Alpha冲刺(团队)-第三天冲刺
  15. LOG4NET用法(个人比较喜欢的用法)
  16. 初识Style和Theme
  17. error LNK2001: 无法解析的外部符号 _H5T_NATIVE_DOUBLE_g
  18. 破解无线网络密码-BT3如何使用2
  19. 处理URL传递中文乱码问题
  20. Fri Oct 31 18:00:00 UTC+0800 2008转换为yyyy-mm-dd

热门文章

  1. Codeforces Round #397 by Kaspersky Lab and Barcelona Bootcamp (Div. 1 + Div. 2 combined) C
  2. 【aspnetcore】让aspnetcore支持less文件
  3. [译]Understanding ECMAScript6 函数
  4. csu 1551: Longest Increasing Subsequence Again BIT + 思维
  5. P1281 书的复制
  6. js图片预加载以及延迟加载
  7. static心得
  8. POJ 2152 Fire (树形DP,经典)
  9. codevs 1390 回文平方数 USACO
  10. SublimeREPL配置Python3开发