Pat1026代码

题目描写叙述:

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


这个排序模拟题。真是延续了PAT坑人的一贯作风啊;

參考了网上的一些代码,下面几点须要注意:

1.当有多个乒乓球台空暇时,vip顾客到了会使用最小id的vip球台,而不是最小id的球台,測试下面用例:

2
10:00:00 30 1
12:00:00 30 1
5 1
3
输出正确结果应为:
10:00:00 10:00:00 0
12:00:00 12:00:00 0
0 0 2 0 0
 
2.题目要求每对顾客玩的时间不超过2小时。那么当顾客要求玩的时间>2小时的时候,应该截断控制。測试下面用例:
2
18:00:00 180 1
20:00:00 60 1
1 1
1
输出的正确结果应为:
18:00:00 18:00:00 0
20:00:00 20:00:00 0
2
3.尽管题目中保证客户到达时间在08:00:00到21:00:00之间。可是依据最后的8个case来看,里面还是有不在这个时间区间内到达的顾客,所以建议还是稍加控制。測试下面用例:
1
21:00:00 80 1
1 1
1
输出的正确结果应为:
0
4.题目中说的round up to an integer minutes是严格的四舍五入。须要例如以下做:
wtime = (stime - atime + 30) / 60
而不是:
wtime = (stime - atime + 59) / 60
     AC代码:
#include<cstdio>
#include<vector>
#include<algorithm> using namespace std; class Player
{
public:
int arrive;//arrive time
int vip;//vip flag
int playtime;//the time player play
bool operator<(const Player r)const
{
return arrive<r.arrive;
}
}; class Table
{
public:
int freetime;//the time table can be used
int vip;//vip falg
int ID;//the number of table
int num;//the number of players the table serve
bool operator<(const Table r)const
{
if(freetime!=r.freetime)
return freetime<r.freetime;
else
return ID<r.ID;
}
}; bool cmp(Table l,Table r)
{
return l.ID<r.ID;
} int main(int argc,char *argv[])
{
Table t[105];
vector<Player> p;
vector<Player> waiting;
int n,i,j;
int k,m;
scanf("%d",&n);
for(i=0;i<n;i++)
{
int h,m,s;
Player temp;
scanf("%d:%d:%d %d %d",&h,&m,&s,&temp.playtime,&temp.vip);
temp.arrive=h*3600+m*60+s;
if(temp.playtime>120)
temp.playtime=120;
temp.playtime*=60;
if(temp.arrive>=21*60*60||temp.arrive<8*60*60)
continue;
p.push_back(temp);
}
scanf("%d%d",&k,&m);
for(i=1;i<=k;i++)
{
t[i].ID=i;
t[i].vip=0;
t[i].num=0;
t[i].freetime=0;
}
for(i=0;i<m;i++)
{
int index;
scanf("%d",&index);
t[index].vip=1;
}
int timer=0;
int cur=0;
sort(p.begin(),p.end());
sort(t+1,t+1+k);
while(timer<21*60*60)
{
for(;cur<p.size();cur++)
{
if(p[cur].arrive<=timer)//假设此时没有空暇球桌,而且在timer
waiting.push_back(p[cur]);//之前到达,player需在队列里等待
else
break;
}
if(!waiting.size())//假设等待对列为空。即此时有剩余球桌
{
if(cur<p.size())
{
timer=p[cur].arrive;
for(i=1;i<=k;i++)//把无人使用球桌的freetime更新为timer
{
if(t[i].freetime<=timer)
t[i].freetime=timer;
}
waiting.push_back(p[cur++]);
}
else
break;
}
vector<Player>::iterator it;//find the first vip player in the queue
for(it=waiting.begin();it!=waiting.end();it++)
if(it->vip)
break;
int vipplayer=0;
if(it!=waiting.end())
vipplayer=1;
int viptable=-1;//find the first vacant vip table
for(i=1;i<=k&&t[i].freetime==timer;i++)
{
if(t[i].vip)
{
viptable=i;
break;
}
}
if(viptable>=1&&vipplayer)//队列中有vip客户,且有空暇vip桌子
{
int arrive=it->arrive;
printf("%02d:%02d:%02d %02d:%02d:%02d %d\n",arrive/3600,
(arrive%3600)/60,arrive%60,timer/3600,(timer%3600)/60,timer%60,
(timer-it->arrive+30)/60);
t[viptable].freetime=timer+it->playtime;
t[viptable].num++;
waiting.erase(it);
}
else
{
int arrive=waiting[0].arrive;
printf("%02d:%02d:%02d %02d:%02d:%02d %d\n",arrive/3600,
(arrive%3600)/60,arrive%60,timer/3600,(timer%3600)/60,timer%60,
(timer-arrive+30)/60);
t[1].freetime=timer+waiting[0].playtime;
t[1].num++;
waiting.erase(waiting.begin());
}
sort(t+1,t+1+k);//对桌子的空暇时间进行排序,否则对ID进行排序
timer=t[1].freetime;//则每次都是第一个桌子先被使用
}
sort(t+1,t+1+k,cmp);//恢复桌子的序号
printf("%d",t[1].num);
for(i=2;i<=k;i++)
printf(" %d",t[i].num);
printf("\n"); return 0;
}

Pat(Advanced Level)Practice--1026(Table Tennis)的更多相关文章

  1. PAT (Advanced Level) Practice(更新中)

    Source: PAT (Advanced Level) Practice Reference: [1]胡凡,曾磊.算法笔记[M].机械工业出版社.2016.7 Outline: 基础数据结构: 线性 ...

  2. PAT (Advanced Level) Practice 1001-1005

    PAT (Advanced Level) Practice 1001-1005 PAT 计算机程序设计能力考试 甲级 练习题 题库:PTA拼题A官网 背景 这是浙大背景的一个计算机考试 刷刷题练练手 ...

  3. PAT (Advanced Level) Practice 1046 Shortest Distance (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1046 Shortest Distance (20 分) 凌宸1642 题目描述: The task is really simple: ...

  4. PAT (Advanced Level) Practice 1042 Shuffling Machine (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1042 Shuffling Machine (20 分) 凌宸1642 题目描述: Shuffling is a procedure us ...

  5. PAT (Advanced Level) Practice 1041 Be Unique (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1041 Be Unique (20 分) 凌宸1642 题目描述: Being unique is so important to peo ...

  6. PAT (Advanced Level) Practice 1035 Password (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1035 Password (20 分) 凌宸1642 题目描述: To prepare for PAT, the judge someti ...

  7. PAT (Advanced Level) Practice 1031 Hello World for U (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1031 Hello World for U (20 分) 凌宸1642 题目描述: Given any string of N (≥5) ...

  8. PAT (Advanced Level) Practice 1027 Colors in Mars (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1027 Colors in Mars (20 分) 凌宸1642 题目描述: People in Mars represent the c ...

  9. PAT (Advanced Level) Practice 1023 Have Fun with Numbers (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1023 Have Fun with Numbers (20 分) 凌宸1642 题目描述: Notice that the number ...

  10. PAT (Advanced Level) Practice 1019 General Palindromic Number (20 分) 凌宸1642

    PAT (Advanced Level) Practice 1019 General Palindromic Number (20 分) 凌宸1642 题目描述: A number that will ...

随机推荐

  1. 树莓派学习笔记——GPIO功能学习

    0.前言     树莓派现在越来越火,网上树莓派的资料也越来越多.树莓派的学习可以分为linux系统学习和linux驱动学习,利用树莓派制作LED流水灯应该算是驱动学习吧.树莓派来自国外,国外嵌入式开 ...

  2. 《The Story of My Life》Introductiom - A Journey Of Discovery

    "I do not object to harsh criticism," said Helen Keller, "so long as I am treated lik ...

  3. 10-spring学习-注入Resource

    注入Resource 虽然Resource 的子类利用了字符串格式进行了隐藏,但是此时的代码中,ResourceLoader跟我的开发没有任何关系, 如果真的开发只关心Resource一个接口就够了. ...

  4. js对数组按顺序排序

    console.log("------默认排序(ASCII字符排序)------"); ,,,,]; arr.sort(); //ASCII字符代码从小到大排序 console.l ...

  5. 使用swagger实现在线api文档自动生成 在线测试api接口

    使用vs nuget包管理工具搜索Swashbuckle 然后安装便可 注释依赖于vs生成的xml注释文件

  6. .net core 控制台程序使用依赖注入(Autofac)

    1.Autofac IOC 容器 ,便于在其他类获取注入的对象 using System; using System.Collections.Generic; using System.Linq; u ...

  7. MySQL主从(MySQL proxy Lua读写分离设置,一主多从同步配置,分库分表方案)

    Mysql Proxy Lua读写分离设置 一.读写分离说明 读写分离(Read/Write Splitting),基本的原理是让主数据库处理事务性增.改.删操作(INSERT.UPDATE.DELE ...

  8. Hive Group By 常见错误

    Expression not in GROUP BY key ‘ xxx’ 遇到这么一个需求,输入数据为一个ID对应多个name,要求输出数据为ID是唯一的,name随便取一个就可以. 执行以下hiv ...

  9. Current thread must be set to single thread apartment (STA) mode before OLE,当前线程不在单线程单元中,因此无法实例化 ActiveX 控件“8856f961-340a-11d0-a96b-00c04fd705a2”。

    Add the STAThreadAttribute attribute on the Main method. This attribute is required if your program ...

  10. log4j DatePattern 解惑

    og4j.appender.Root=org.apache.log4j.DailyRollingFileAppenderlog4j.appender.Root.File=../logs/bloglog ...