Alisha’s Party

Alisha’s Party

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


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
 
Source
题意:Princess Alisha要举办party,有k个朋友参加,每个朋友到达的时间,带礼物的价值都不一样,按到达先后顺序输入朋友姓名及其所带礼物的价值,m次输入两个数t,p。代表当第t个人到达时候Alisha开门让p个人进来,当然谁带的礼物价值高谁先进,礼物价值一样时,谁先到谁先进,当然不保证m次输入有序。m次开门后,会再开一次门,让所有没进到大厅的人,依次进入。q次查询,第nq个进入Alisha大厅的是谁。输出人名之间有空格。
ps:优先队列是个好东西
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<queue>
 5 #include<stack>
 6 #include<vector>
 7 #include<algorithm>
 8 
 9 using namespace std;
10 
11 #define maxn 150008
12 char name[maxn][220];
13 
14 struct node
15 {
16     int v, id;
17     bool operator < (const node &t)const
18     {
19         if(v == t.v)
20             return id > t.id;
21         return v < t.v;
22     }
23 }p[maxn];
24 
25 struct people
26 {
27     int t, p;
28     bool operator < (const people &k)const
29     {
30         return t < k.t;
31     }
32 }a[maxn];
33 
34 int cnt[maxn];
35 
36 int main()
37 {
38     int c, k, m, q, s, g, z;
39     scanf("%d", &c);
40 
41     while(c--)
42     {
43         g = 1;
44         s = 0;
45         priority_queue<node> Q;
46         scanf("%d%d%d", &k, &m, &q);
47         for(int i = 0; i < k; i++)   // 关系全让 下标 i 联系~
48         {
49             scanf("%s", name[i]);
50             scanf("%d", &p[i].v);
51             p[i].id = i;
52         }
53         for(int i = 0; i < m; i++)
54             scanf("%d %d", &a[i].t, &a[i].p);
55         sort(a, a+m);  // 坑点,输入的当第几个人到的开门不按顺序,要排序^^……^
56         for(int i = 0; i < m; i++)
57         {
58             for(; s < a[i].t; s++)
59                 Q.push(p[s]);
60             while(Q.size() && a[i].p)
61             {
62                 node u = Q.top();
63                 Q.pop();
64                 cnt[g++] = u.id;
65                 a[i].p--;
66             }
67         }
68         for(; s < k; s++)
69             Q.push(p[s]);   // m次开门后如果还有人没进,一次依次进去
70         while(Q.size())
71         {
72             node u = Q.top();
73             Q.pop();
74             cnt[g++] = u.id;
75         }
76         while(q--)
77         {
78             scanf("%d", &z);
79 
80             if(q >= 1)
81                 printf("%s ", name[cnt[z]]);
82             else
83                 printf("%s
", name[cnt[z]]);
84         }
85     }
86     return 0;
87 }
原文地址:https://www.cnblogs.com/Tinamei/p/4810190.html