1026. Table Tennis (30)
题目如下:
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
题目要求对乒乓球厅的事件进行模拟。
根据用户到达时间排队,有空桌子则按先到先服务的原则处理,如果队列中有VIP用户并且有VIP桌子空闲,则VIP可以“自成一队”,按照到达顺序直接分配到VIP桌,如果没有VIP桌空闲,则VIP和普通用户同样对待。如果队中没有VIP并且编号最小的恰是VIP桌,普通用户也可以使用VIP桌。
这类题目需要处理桌子的空闲与用户的到达、服务时间之间的关系,需要有一个较好的思路,否则很容易混乱。
一个比较好的思路是为每个桌子设定空闲时间,首先全部初始化为上午8:00,当处理一个人时,首先从桌子列表最前面取到桌子,然后根据自己的到达时间和桌子的空闲时间即可计算出桌子的新空闲时间、用户的等待时间和服务时间(有可能到关门时达不到预期服务时间)。
这道题麻烦在VIP上,如果有VIP用户,他们可以“插队”,要处理这些用户,就会让问题变得复杂,不能简单的取出第一个未服务用户和第一个桌子,而是要考虑有VIP用户和VIP桌子的情况,这里有两种优秀的解法:
①类似归并排序的思想,维护普通用户和VIP用户两个队列。
②仅使用一个队列,先考虑VIP情况,没有VIP被处理则按照正常情况处理,算法来自sunbaigui。
我完整的参考了sunbaigui的解法,他的解法非常巧妙,下面罗列一下关键点:
①对用户排序后从前到后处理,初始化服务开始时间为INF,这样当处理完一个人时,他的服务时间不再是INF,由此判断是否处理完毕,不必另设标志。
②不对桌子排序,而是找到所有桌子中空闲时间最早的,从桌子列表从前到后筛选,这样就保证了按照编号的顺序,十分巧妙。
③根据②中找到的最早空闲时间,找出所有符合的桌子和用户,分别存储一个新的容器,后面就针对这两个新的容器处理。
④分情况讨论,单人单桌、多人单桌、多人多桌,在这三种情况下分别判断是否有VIP被服务。
⑤如果④中没有VIP被服务,则取出新容器中第一个用户和第一个桌子,正常处理。
下面的代码来自sunbaigui,我在他代码的基础上加了些注释,方便理解。
#include<iostream>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<algorithm>
#include<string>
#include<string.h>
#include<stdio.h> using namespace std; typedef struct Node
{
int arrive, process, tag;
int serve, wait; // serve和wait分别代表服务开始时间和等待时间,将serve初始化为INF,从而区分有没有被服务
}Node;
typedef struct Table
{
int tag;
int freeTime, num; // 每个桌子记录自己的空闲时间和服务数,全部初始化为上午8:00,这样可以迭代着处理
}Table;
bool CmpArrive(Node a, Node b) // 用于对用户的到达时间升序排序
{
return a.arrive < b.arrive;
}
bool CmpServe(Node a, Node b) // 对用户按照时间顺序排列,优先按照服务时间排序,如果服务同时开始(多个空桌),按照到达时间升序
{
if(a.serve == b.serve)
return a.arrive < b.arrive;
else return a.serve < b.serve;
}
#define INF 0x6FFFFFFF vector<Node> user;
vector<Table> table;
void UpdateInfo(int userID, int tableID)
{
user[userID].serve = max(user[userID].arrive, table[tableID].freeTime);
user[userID].wait = user[userID].serve-user[userID].arrive;
table[tableID].num++;
table[tableID].freeTime = user[userID].serve+min(user[userID].process, 7200); // 最长服务时间为2小时
}
int main()
{
//input
int n;
scanf("%d",&n); user.resize(n);
for(int i = 0; i < n; ++i)
{
int h, m, s;
scanf("%d:%d:%d %d%d",&h,&m,&s,&user[i].process,&user[i].tag);
user[i].arrive = h*3600+m*60+s;
user[i].process *= 60;
user[i].serve = INF; user[i].wait = INF; // 初始化为INF,INF就代表未被处理
}
int k, m;
scanf("%d%d",&k,&m); table.resize(k);
for(int i = 0; i < k; ++i)
table[i].freeTime = 8*3600, table[i].tag = 0, table[i].num = 0; // 所有桌子从上午8:00开始可用
for(int i = 0; i < m; ++i)
{
int c;
scanf("%d",&c); c--;
table[c].tag = 1;
}
//process
sort(user.begin(), user.end(), CmpArrive); // 按照到达时间升序排列,符合排队规则
//visited.assign(n, false);
for(int i = 0; i < n; ++i)
{
if(user[i].serve != INF) continue; // server时间初始化为INF,不为INF的已经服务完毕。
int minFreeTime = INF;
for(int j = 0; j < k; ++j)
minFreeTime = min(minFreeTime, table[j].freeTime); // 找出最早空闲的桌子
int timePoint = max(user[i].arrive, minFreeTime); // 根据队头用户确定当前最早服务时间点
if(timePoint >= 21*3600) break; // 判断是否超过营业时间
vector<int> userList;
vector<int> tableList;
for(int j = i; j < n; ++j) // 根据最早服务时间点找到所有可能被服务的人,是为了处理有VIP优先去VIP桌的情况。
if(user[j].serve == INF && user[j].arrive <= timePoint) userList.push_back(j);
for(int j = 0; j < k; ++j) // 找出所有在时间点之前空闲的桌子,因为可能用户到达晚,因此会有多个桌子空闲
if(table[j].freeTime <= timePoint) tableList.push_back(j); bool flag = false; // 判断是否处理了一个服务
// 首先特殊处理VIP,如果没有VIP被处理则处理一个普通用户,每次只处理一个
if(userList.size() == 1 && tableList.size() > 1) // 单个用户多个桌子,用户为VIP则去找编号最小的VIP桌
{
if(user[userList[0]].tag == 1)
{
for(int j = 0; j < tableList.size(); ++j)
{
if(table[tableList[j]].tag == 1)
{
flag = true;
UpdateInfo(userList[0], tableList[j]);
break;
}
}
}
}
else if(tableList.size() == 1 && userList.size() > 1) // 多人单桌情况,如果为VIP桌找多人中最先到达的VIP为其服务
{
if(table[tableList[0]].tag == 1)
{
for(int j = 0; j < userList.size(); ++j)
{
if(user[userList[j]].tag == 1)
{
flag = true;
UpdateInfo(userList[j], tableList[0]);
break;
}
}
}
}
else if(tableList.size() > 1 && userList.size() > 1) // 多人多桌情况,先找桌子中的VIP桌,有则找用户中最先到达的VIP
{
for(int t = 0; t < tableList.size(); ++t)
{
if(table[tableList[t]].tag == 1)
{
for(int u = 0; u < userList.size(); ++u)
{
if(user[userList[u]].tag == 1)
{
flag = true;
UpdateInfo(userList[u], tableList[t]);
break;
}
}
}
}
}
if(!flag) UpdateInfo(userList[0], tableList[0]); // 如果没有VIP被处理,则按照正常情况处理。
--i;
}
//output
sort(user.begin(), user.end(), CmpServe);
for(int i = 0; i < n; ++i)
{
if(user[i].serve >= 21*3600) break;
int h1, m1, s1, h2, m2, s2;
int t = user[i].arrive;
h1 = t/3600; t %= 3600;
m1 = t/60; t %= 60;
s1 = t;
t = user[i].serve;
h2 = t/3600; t %= 3600;
m2 = t/60; t %= 60;
s2 = t;
// 注意对等待时间的四舍五入为超过30秒算作一分钟
printf("%02d:%02d:%02d %02d:%02d:%02d %d\n", h1, m1, s1, h2, m2, s2, (user[i].wait+30)/60);
}
for(int i = 0; i < k; ++i)
{
if(i != k-1)
printf("%d ",table[i].num);
else printf("%d\n",table[i].num);
}
return 0;
}
1026. Table Tennis (30)的更多相关文章
- PAT 甲级 1026 Table Tennis (30 分)(坑点很多,逻辑较复杂,做了1天)
1026 Table Tennis (30 分) A table tennis club has N tables available to the public. The tables are ...
- 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 ...
- 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分) 难度不高 + 逻辑复杂 +细节繁琐
题目 A table tennis club has N tables available to the public. The tables are numbered from 1 to N. Fo ...
- 【PAT甲级】1026 Table Tennis (30 分)(结构体排序,trick较多)
题意: 输入一个正整数N(<=10000),表示客户(对)的大小,接着输入N行数据,每行包括一对顾客到场的时间,想要玩的时间,以及是否是VIP客户.接下来输入两个正整数K,M(K<=100 ...
- PAT (Advanced Level) 1026. Table Tennis (30)
情况比较多的模拟题. 交了50发的样子才AC......AC之后我的天空星星都亮了. #include<iostream> #include<cstring> #include ...
- PAT 1026 Table Tennis[比较难]
1026 Table Tennis (30)(30 分) A table tennis club has N tables available to the public. The tables ar ...
- PAT 甲级 1026 Table Tennis(模拟)
1026. Table Tennis (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue A table ...
随机推荐
- Codeforces Round #408 (Div. 2)
C. Bank Hacking 题目大意:给出一棵n个节点的树,每个节点有一个权值,删掉一个点的代价为当前这个点的权值,并且会使其相邻点和距离为2且中间隔着未被删除的点的点权值加1,现在选一个点开始删 ...
- [BZOJ]2017省队十连测推广赛1
听学长说有比赛就随便打一打. A.普通计算姬 题目大意:给出一棵带权树,支持一下两种操作:1.修改一个点的权值:2.给出l,r,询问以点l为根的子树和.点l+1为根的子树和.点l+2为根的子树和--点 ...
- 习题9-3 UVA1629(dp)
Cake Slicing 题意:有一个n行m列的网格上有一些黑点,要求进行切割,使最后每块上只有一个黑点,求最少的刀数 思路:记忆化搜索,枚举每一条边来切,每一次搜索自己所能切割的所有情况取最小值 但 ...
- 2017ACM/ICPC广西邀请赛-重现赛 1007.Duizi and Shunzi
Problem Description Nike likes playing cards and makes a problem of it. Now give you n integers, ai( ...
- java的泛型
泛型概述 先看下面的代码: ArrayList al1 = new ArrayList(); ArrayList al2 = new ArrayList(); al1.add("hello& ...
- URI与URL
为了区分URI与URL,我们要引入URN URI = Universal Resource Identifier 统一资源标志符URL = Universal Resource Locator 统一资 ...
- Python作业之购物车
作业之购物车 购物车的要求如下: 输入总金额 选择购买的商品,金额足够时,把选择的商品添加到购物车,金额不足时,进行提示,商品将不会添加到购物车 随时可以退出程序,同时输出已购买的商品 具体代码如下: ...
- C# 枚举在项目中使用心得
阅读目录 基本介绍 使用注意 使用方法 扩展用法 本文主要是我在项目中对C#枚举的使用心得,如有不足的地方欢迎您指出. 一.基本介绍 枚举是由一组特定常量构成的一组数据结构,是值类型的一种特 ...
- Mysql--存储引擎(MyISam & InnoDB)
Mysql 系列文章主页 =============== 查看 Mysql 支持的存储引擎: show engines; 查看当前数据库使用的存储引擎: show variables like '%s ...
- python map filter reduce的优化使用
这篇讲下python中map.filter.reduce三个内置函数的使用方式,以及优化方法. map()函数 map()函数会根据提供的函数对指定序列做映射. 语法: map(function,it ...