PAT 甲级 1026 Table Tennis (30 分)(坑点很多,逻辑较复杂,做了1天)
A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For any pair of players, if there are some tables open when they arrive, they will be assigned to the available table with the smallest number. If all the tables are occupied, they will have to wait in a queue. It is assumed that every pair of players can play for at most 2 hours.
Your job is to count for everyone in queue their waiting time, and for each table the number of players it has served for the day.
One thing that makes this procedure a bit complicated is that the club reserves some tables for their VIP members. When a VIP table is open, the first VIP pair in the queue will have the priviledge to take it. However, if there is no VIP in the queue, the next pair of players can take it. On the other hand, if when it is the turn of a VIP pair, yet no VIP table is available, they can be assigned as any ordinary players.
Input Specification:
Each input file contains one test case. For each case, the first line contains an integer N (≤10000) - the total number of pairs of players. Then N lines follow, each contains 2 times and a VIP tag: HH:MM:SS - the arriving time, P - the playing time in minutes of a pair of players, and tag - which is 1 if they hold a VIP card, or 0 if not. It is guaranteed that the arriving time is between 08:00:00 and 21:00:00 while the club is open. It is assumed that no two customers arrives at the same time. Following the players' info, there are 2 positive integers: K (≤100) - the number of tables, and M (< K) - the number of VIP tables. The last line contains M table numbers.
Output Specification:
For each test case, first print the arriving time, serving time and the waiting time for each pair of players in the format shown by the sample. Then print in a line the number of players served by each table. Notice that the output must be listed in chronological order of the serving time. The waiting time must be rounded up to an integer minute(s). If one cannot get a table before the closing time, their information must NOT be printed.
Sample Input:
9
20:52:00 10 0
08:00:00 20 0
08:02:00 30 0
20:51:00 10 0
08:10:00 5 0
08:12:00 10 1
20:50:00 10 0
08:01:30 15 1
20:53:00 10 1
3 1
2
Sample Output:
08:00:00 08:00:00 0
08:01:30 08:01:30 0
08:02:00 08:02:00 0
08:12:00 08:16:30 5
08:10:00 08:20:00 10
20:50:00 20:50:00 0
20:51:00 20:51:00 0
20:52:00 20:52:00 0
3 3 2
题意:
题目大意: 一个乒乓球俱乐部有N个球员和K个乒乓球桌台,俱乐部8点到21点开门,N个球员不同时间到达俱乐部,根据他们的到达时间和打球时间按照乒乓球台号码从小到大分配球台。原本是一个极其简单的模拟队列问题,但是题目加了一句话,使得这道题的逻辑瞬间复杂了起来——这句话增加了一些约束条件:
有VIP球桌和VIP会员:1. 如果VIP球桌空闲,且到场的有VIP队员,那么VIP在排队等候的时候优先于一般会员。2. 如果没有VIP会员,VIP球桌空闲的话,一般用户也可以使用,先到先得;3. 如果没有空闲的VIP球桌,VIP会员和一般会员一样排队。
解题思路:
1.使用优先队列,排队的时候,队列a,b中按到达时间排序。输出时,队列ans中按服务时间排序。
2.核心逻辑:
先找出当前桌子中最先结束的时间min_t,最先结束的桌子min_k
if min_k是vip桌子的话:
看看vip队列中有没有人,且符合条件(到达时间早于min_t)
if 有且符合条件
替换min_k
continue
else:
把a队列(普通用户队列)和b队列(vip队列)中的第一个人拿出来,比较谁更早一点
(这里有个小技巧,如果某个队列为空了,那么从这个队列里取出来的人的到达时间为99999999,那么就不会取到他了)
if 普通用户早:
用它替换min_k
else :(vip早)
遍历所有桌子,有没有空闲的vip桌
if 有vip桌 j 空闲:
用它替换 j
continue
else:
用它替换min_k
坑点:
①playtime超过2小时要压缩为2小时
②虽然本题所有人的到达时间没有超过21点,但是第三组数据有恰好21点到的,此人不能得到服务
③vip用户,如果此时有vip桌子空着,用编号最小的vip桌子
④等待时间四舍五入
测试样例:
//vip桌子分配例子,有vip桌子时,优先把vip分到编号小的vip桌子,而不是编号小的vip桌子 ::
::
::
:: 答案为:
:: ::
:: ::
:: ::
:: :: //边缘测试例子 :: 答案为: //超过两小时的例子 ::
:: 答案为:
:: ::
:: :: //关于四舍五入为1分钟的例子,大约等于30秒才+1分钟,小于30则不+ ::
::
:: 答案为: :: ::
:: ::
:: ::
AC代码:
#include<bits/stdc++.h>
using namespace std;
struct node{
int a;//到达的时间
int s;//开始的时间
int t;//服务时间 };
struct cmp
{
bool operator()(node &x,node &y)
{
return x.a > y.a;
}
};
struct cmp2
{
bool operator()(node &x,node &y)
{
return x.s > y.s;
}
};
priority_queue<node ,vector<node>,cmp>a,b;//a为普通用户,b为vip用户
priority_queue<node ,vector<node>,cmp2>ans;
int n,m,k;
int tab[];//桌子服务的人数
int vt[];//标记是不是vip桌子
node q[];//正在服务的人们
int main(){
cin>>n;
memset(vt,,sizeof(vt));
memset(tab,,sizeof(tab));
while(!a.empty()) a.pop();
while(!b.empty()) b.pop();
while(!ans.empty()) ans.pop();
for(int i=;i<=n;i++){
int hh,mm,ss;
node x;
scanf("%d:%d:%d",&hh,&mm,&ss);
hh=hh*+mm*+ss;
cin>>mm;
mm*=;
if(mm>*) mm=*;
x.a=hh;
x.t=mm;
int v;
cin>>v;
if(x.a>=*){//时间超过来的直接不要
continue;
}
if(v==){
a.push(x);
}else{//vip
b.push(x);
}
}
cin>>k>>m;
for(int i=;i<=k;i++){//初始化
q[i].a=-;//初始来的人时间为-1
q[i].s=*;
q[i].t=;
}
for(int i=;i<=m;i++){
int x;
cin>>x;
vt[x]=;
}
while(!a.empty() || !b.empty())//开始执行
{
int min_t=;//找到一个最早的结束时间
int min_k=-;//最早结束时间对于的桌号
for(int i=;i<=k;i++){
if(min_t>q[i].s+q[i].t){
min_t=q[i].s+q[i].t;
min_k=i;
}
}
if(min_t>=*){
break;
}
//【1】先检查是不是vip桌子
if(vt[min_k]){
if(!b.empty()){//先看看队列里有没有vip
node x=b.top();
if(x.a<min_t){//如果vip在队列里,优先考虑
ans.push(q[min_k]);//把排在min_k的人放进最终答案中
q[min_k].a=x.a;
q[min_k].t=x.t;
q[min_k].s=min_t;
tab[min_k]++;//对于桌子服务的人数++
b.pop();
continue;
}
}
}
//【2】不是vip桌子
node x,y;
if(!a.empty()){
x=a.top();
}else{//小技巧,空的话就99999999
x.a=;
}
if(!b.empty()){
y=b.top();
}else{
y.a=;
}
if(x.a<y.a){//两者谁先就放谁
ans.push(q[min_k]);
tab[min_k]++;
q[min_k].a=x.a;
q[min_k].t=x.t;
a.pop();
if(x.a<min_t){
q[min_k].s=min_t;
}else{
q[min_k].s=x.a;
}
}else{//如果是vip早的话,看看有没有同样结束的vip桌子
//(1)坑点!优先把vip分到编号小的vip桌子,而不是编号小的桌子
int flag=;
for(int j=;j<=k;j++){
if(vt[j] && y.a >= q[j].s+q[j].t){//有符合条件的桌子
ans.push(q[j]);
tab[j]++;
q[j].a=y.a;
q[j].t=y.t;
q[j].s=y.a;
b.pop();
flag=;
break;
}
}
if(flag) continue;
//(2) 否则,就放在min_k这张桌子上
ans.push(q[min_k]);
tab[min_k]++;
q[min_k].a=y.a;
q[min_k].t=y.t;
b.pop();
if(y.a<min_t){
q[min_k].s=min_t;
}else{
q[min_k].s=y.a;
}
}
}
for(int i=;i<=k;i++){
ans.push(q[i]);
}
//输出
while(!ans.empty()){
node x = ans.top();
ans.pop(); if(x.a==-){//一开始是默认没有人的
continue;
}
int cha=x.s-x.a;//计算时间差 int hh=x.a/;
x.a=x.a%;
int mm=x.a/;
int ss=x.a%;
printf("%02d:%02d:%02d ",hh,mm,ss); hh=x.s/;
x.s=x.s%;
mm=x.s/;
ss=x.s%;
printf("%02d:%02d:%02d ",hh,mm,ss); cout<<int(cha*1.0/+0.5)<<endl;//四舍五入,不是向上取整
}
for(int i=;i<=k;i++){
cout<<tab[i];
if(i!=k) cout<<" ";
}
return ;
}

PAT 甲级 1026 Table Tennis (30 分)(坑点很多,逻辑较复杂,做了1天)的更多相关文章
- 1026 Table Tennis (30分) 难度不高 + 逻辑复杂 +细节繁琐
题目 A table tennis club has N tables available to the public. The tables are numbered from 1 to N. Fo ...
- PAT甲级1026. Table Tennis
PAT甲级1026. Table Tennis 题意: 乒乓球俱乐部有N张桌子供公众使用.表的编号从1到N.对于任何一对玩家,如果有一些表在到达时打开,它们将被分配给具有最小数字的可用表.如果所有的表 ...
- PAT 甲级 1026 Table Tennis(模拟)
1026. Table Tennis (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A table ...
- 1026 Table Tennis (30分)
A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For a ...
- 【PAT甲级】1026 Table Tennis (30 分)(结构体排序,trick较多)
题意: 输入一个正整数N(<=10000),表示客户(对)的大小,接着输入N行数据,每行包括一对顾客到场的时间,想要玩的时间,以及是否是VIP客户.接下来输入两个正整数K,M(K<=100 ...
- PAT甲级1026 Table Tennis【模拟好题】
题目:https://pintia.cn/problem-sets/994805342720868352/problems/994805472333250560 题意: 有k张乒乓球桌,有的是vip桌 ...
- PAT 1026 Table Tennis (30)
A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For a ...
- 1026 Table Tennis (30)(30 分)
A table tennis club has N tables available to the public. The tables are numbered from 1 to N. For a ...
- PAT 甲级 1022 Digital Library (30 分)(字符串读入getline,istringstream,测试点2时间坑点)
1022 Digital Library (30 分) A Digital Library contains millions of books, stored according to thei ...
随机推荐
- less嵌套规则
嵌套,是less里面最有意思的小东西,比如说我们经常性的去写一些列表性的东西 html <ul class="list"> <li><a href=& ...
- CodeForces 768E SG函数 整数划分 Game of Stones
一个标准的NIM游戏 加上一条规则:每堆石子对于每个数目的石子只能被取一次 可以SG打表 dp[i][j]表示现在有i个石子 j是可以取的石子数的状压 第i位为1就表示i个石子没被取过 #includ ...
- linux实操_定时任务调度
crond任务调度 语法:crontab [选项] -e 编辑crontab定时任务 -i 查询crontab任务 -r 删除当前用户所有的crontab任务 service crond restar ...
- Lua 学习之基础篇三<Lua 字符串操作>
Lua字符串可以使用以下三种方式表示: 单引号间的一串字符. 双引号间的一串字符. [[和]]间的一串字符. string = [["Lua"]] print("字符串 ...
- django--没有整理,笔记
https://docs.djangoproject.com/en/2.2/常用的数据路命令:python manage.py makemigrations 数据移植准备python manage.p ...
- vue1 class style
- centos ntfs-3g not find
1,CentOS默认源里没有ntfs3g,想要添加ntfs支持,需要自己下载编译安装或者加源yum安装.我这里使用的是添加aliyun的epel源来yum安装的方式. 2,添加epel yum源wge ...
- 11 - Vue模板语法
Vue.js 使用了基于 HTML 的模板语法,允许开发者声明式地将 DOM 绑定至底层 Vue 实例的数据. 所有 Vue.js 的模板都是合法的 HTML ,所以能被遵循规范的浏览器和 HTML ...
- BZOJ 3589 动态树 (树链剖分+线段树)
前言 众所周知,90%90\%90%的题目与解法毫无关系. 题意 有一棵有根树,两种操作.一种是子树内每一个点的权值加上一个同一个数,另一种是查询多条路径的并的点权之和. 分析 很容易看出是树链剖分+ ...
- 路由器配置——DHCP+DHCP中继服务配置
一.实验目的:掌握DHCP服务基本配置及DHCP中继服务配置,实现全网互通 二.拓扑图: 三.具体步骤配置: (1)R1路由器配置: Router>enable --进入特权模式 Router ...