博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1026 Table Tennis (30)
阅读量:5237 次
发布时间:2019-06-14

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

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

#include 
#include
#include
#include
#include
#include
#include
using namespace std;#define INF 21*3600#define MAX 10000int CurrTime[MAX+5];int numTable[MAX+5];//桌子被玩的次数//用户的结构体struct Player{ int startTime;//到达的时间 int waitTime;//等待的时间 int playTime;//玩耍的时间}VipPlayer[MAX+5],OriPlayer[MAX+5];int n;//n个人int k,m;//桌子的数量,vip桌子的数量int cmp(Player a,Player b) { return a.startTime
120)//如果超过两个小时,要进行限制 time=120; if(hh>=21) continue;//如果超出营业时间,要进行限制 if(tag)//如果是vip { VipPlayer[VipNumber].startTime=sum; VipPlayer[VipNumber].waitTime=0; VipPlayer[VipNumber++].playTime=time; } else//如果不是 { OriPlayer[OriNumber].startTime=sum; OriPlayer[OriNumber].waitTime=0; OriPlayer[OriNumber++].playTime=time; } } scanf("%d%d",&k,&m);//输入桌子数量和vip桌子数量 int xx;memset(vipTag,0,sizeof(vipTag)); memset(numTable,0,sizeof(numTable)); for(int i=1;i<=m;i++) { scanf("%d",&xx); vipTag[xx]=1; } //对普通和vip进行排序 sort(VipPlayer+1,VipPlayer+VipNumber,cmp); sort(OriPlayer+1,OriPlayer+OriNumber,cmp); int i=1,j=1; int index=-1; for(int i=1;i<=k;i++) CurrTime[i]=8*3600; while(i
VipNumber&&j>OriNumber) break; if(i
OriTime&&OriTime<21*3600) {VipServe=false;} else if(OriTime>VipTime&&VipTime<21*3600) {VipServe=true;} else if(OriTime==VipTime&&OriTime<21*3600) { if(vipTag[index]||(!vipTag[index]&&VipPlayer[i].startTime

转载于:https://www.cnblogs.com/dacc123/p/8228706.html

你可能感兴趣的文章
java Facade模式
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>