博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Alisha’s Party
阅读量:6955 次
发布时间:2019-06-27

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

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
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 9 using namespace std;10 11 #define maxn 15000812 char name[maxn][220];13 14 struct node15 {16 int v, id;17 bool operator < (const node &t)const18 {19 if(v == t.v)20 return id > t.id;21 return v < t.v;22 }23 }p[maxn];24 25 struct people26 {27 int t, p;28 bool operator < (const people &k)const29 {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
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 else83 printf("%s\n", name[cnt[z]]);84 }85 }86 return 0;87 }

 

转载于:https://www.cnblogs.com/Tinamei/p/4810190.html

你可能感兴趣的文章
2018 FDA获批医疗器械盘点,政策红利能否继续?
查看>>
Git协同工作流介绍
查看>>
语音识别实时对比(百度收费 VS SpeechTexter免费)
查看>>
2018智能汽车盘点,新旧造车势力的智能化PK
查看>>
阿里云服务器的配置及搭建教程
查看>>
书籍:python游戏编码 Coding Games in Python - 2018
查看>>
Docker镜像细节
查看>>
如何通过脚本实现数据动态更新
查看>>
远禾科技出席阿里ASRC生态大会 并参与安恒西湖论剑
查看>>
使用eclipse创建web项目的项目图文步骤
查看>>
window powershell 获取所有用户的最后登录时间
查看>>
ApiPost的环境变量的定义和使用「ApiPost环境变量」
查看>>
智能相机是工业深度学习的第一步
查看>>
Android 代码中动态设置字体大小-TextView.SetTextSize()
查看>>
Percona XtraBackup 8.0, 安装与测试
查看>>
GeoMesa时空基础及应用场景
查看>>
使用Intellij Idea打包java为可执行jar包
查看>>
智能手机 3D 视觉之战:苹果不再一枝独秀,Android 全面崛起
查看>>
用AI教直男恋爱、手残做菜、防诈骗,愚人节的百度、阿里、腾讯好嗨哟!
查看>>
「镁客·请讲」羿娲科技谷鹄翔:“小”赛道如何做出“大有可为”?
查看>>