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 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 nth person to enter her castle is.
 
Input
The first line of the input gives the number of test cases, T , where 1T15.

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 1k150,000. The door would open m times before all Alisha’s friends arrive where 0mk. Alisha will have q queries where 1q100.

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

Each of the following m lines contains two integers t(1tk) and p(0pk) separated by a blank. The door will open right after the tth 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 n1th,...,nqth 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
 

考点明确,就是优先队列,再模拟一下可以出结果。每入队一个人就操作一次。数据量略大,用c的输入输出过了,cin,cout会TLE。
 1 #include<stdio.h>
 2 #include<iostream>
 3 #include<string>
 4 #include<cstring>
 5 #include<algorithm>
 6 #include<queue>
 7 
 8 using namespace std;
 9 
10 struct fri
11 {
12     char name[200];
13     int come,v;
14     bool operator < (const fri& f) const
15     {
16         if(v!=f.v) return v<f.v;
17         else return come>f.come;
18     }    //为了优先队列里的顺序而重载 
19 }f[150000];
20 
21 int c[150000],ans[150000];
22 
23 int main()
24 {
25     int k,m,q,t,p,sum;
26     int T;
27     
28     cin>>T;
29     
30     while(T--)
31     {
32         memset(c,0,sizeof(c));
33         sum=1;
34         cin>>k>>m>>q;
35         for(int i=1;i<=k;++i)
36         {
37             scanf("%s %d",f[i].name,&f[i].v);
38             f[i].come=i;
39         }
40         for(int i=1;i<=m;++i)
41         {
42             scanf("%d %d",&t,&p);
43             c[t]=p;
44         }    //输入顺序不确定,t个人时进行操作 
45         
46         priority_queue<fri> que;
47         for(int i=1;i<=k;++i)    //每来一个人,检查是否开门 
48         {
49             que.push(f[i]);        //来第i个人入队 
50             int n = c[i];    //来了i个人时应出队的n个人进行操作 
51             while(n&&!que.empty())
52             {
53                 ans[sum++]=que.top().come;    //记录出队人的序号,下面用于输出名字 
54                 que.pop();
55                 --n;
56             }
57         }
58         while(!que.empty())        //剩下的人依次出队 
59         {
60             ans[sum++]=que.top().come;
61             que.pop();
62         }
63         
64         while(q--)
65         {
66             int a;
67             scanf("%d",&a);
68             printf("%s",f[ans[a]].name);
69             if(q==0) printf("
");
70             else printf(" ");
71         }
72     }
73     return 0;
74 }
原文地址:https://www.cnblogs.com/Traveller-Leon/p/4853282.html