Waiting in Line

  Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules for the customers to wait in line are:

  • The space inside the yellow line in front of each window is enough to contain a line with Mcustomers. Hence when all the N lines are full, all the customers after (and including) the (st one will have to wait in a line behind the yellow line.
  • Each customer will choose the shortest line to wait in when crossing the yellow line. If there are two or more lines with the same length, the customer will always choose the window with the smallest number.
  • Customer​i​​ will take T​i​​ minutes to have his/her transaction processed.
  • The first N customers are assumed to be served at 8:00am.

  Now given the processing time of each customer, you are supposed to tell the exact time at which a customer has his/her business done.

  For example, suppose that a bank has 2 windows and each window may have 2 custmers waiting inside the yellow line. There are 5 customers waiting with transactions taking 1, 2, 6, 4 and 3 minutes, respectively. At 08:00 in the morning, customer​1​​ is served at window​1​​ while customer​2​​ is served at window​2​​. Customer​3​​ will wait in front of window​1​​ and customer​4​​ will wait in front of window​2​​. Customer​5​​ will wait behind the yellow line.

  At 08:01, customer​1​​ is done and customer​5​​ enters the line in front of window​1​​ since that line seems shorter now. Customer​2​​ will leave at 08:02, customer​4​​ at 08:06, customer​3​​ at 08:07, and finally customer​5​​ at 08:10.

Input Specification:

  Each input file contains one test case. Each case starts with a line containing 4 positive integers: N (≤, number of windows), M (≤, the maximum capacity of each line inside the yellow line), K (≤, number of customers), and Q (≤, number of customer queries).

  The next line contains K positive integers, which are the processing time of the K customers.

  The last line contains Q positive integers, which represent the customers who are asking about the time they can have their transactions done. The customers are numbered from 1 to K.

Output Specification:

  For each of the Q customers, print in one line the time at which his/her transaction is finished, in the format HH:MM where HH is in [08, 17] and MM is in [00, 59]. Note that since the bank is closed everyday after 17:00, for those customers who cannot be served before 17:00, you must output Sorry instead.

Sample Input:

2 2 7 5
1 2 6 4 3 534 2
3 4 5 6 7

Sample Output:

08:07
08:06
08:10
17:00
Sorry

解题思路:
  本题意思是银行有n个窗口,每个窗口前最多可以排m个人,现在有k个人,所有窗口从8点开始服务,到17点停止接受服务,不过如果17点前接受了服务,无论多晚也会服务完该客户。要求按查询输出客户完成服务的时间(愚蠢的顾客们只要选定一个排队的窗口就会一直排到关门,即使其他窗口空了也不换)。

  本题每组测试数据首先给出4个整数,分别为窗口数量n、最大排队人数m、客户人数k、查询数量q,之后一行包括k个整数,代表服务每个客户所需要的时间(分钟),下一行包括q个整数,代表查询的客户。

  首先分析一下样例








 

  我们可以吧每一个窗口看作一个先进先出的队列,队列的容量为m,一共有n个这样的队列。queue<int> win[maxw] ,win[ i ]便代表第i窗口的队列。由于客户总是会选择最短的队列,所以在所有队列被填满时不会有出队操作。每个队列在开始处理今天第一名客户时记录现在以及消耗的时间为0,在所有队列都被填满后就要执行出队操作了,我们需要找到哪个窗口的客户先处理完,对其所在的窗口进行出队,同时获得当前处理的客户的结束时间与下一名客户的开始时间,之后将下一名客户入队。

  在所有客户都入队后需要对所有窗口进行出队操作,这样便可以获得所有客户的开始时间与结束时间。

找到排队最短的窗口

int getMinSize(int &w){ //获得当前排队长度最短的窗口
int minSize = INT_MAX;
for(int i = ; i < n; i++){
if(win[i].size() < minSize){
minSize = win[i].size();
w = i;
}
}
return minSize;
}

  找到最先处理完的客户所在的窗口并执行出队

void dispose(){ //找到最先处理完的客户所在的窗口并执行出队
int disWin; //记录最先处理完的客户所在的窗口
int disEdTime = INT_MAX; //记录记录最先处理完的客户的结束时间
for(int i = ; i < n; i++){
if(disEdTime > nowTime[i] + needTime[win[i].front()]){
//服务结束时间为当前窗口消耗时间假设处理该客户需要消耗的时间
disWin = i; //记录窗口与结束时间
disEdTime = nowTime[i] + needTime[win[i].front()];
}
}
edTime[win[disWin].front()] = disEdTime; //记录客户结束时间
win[disWin].pop(); //出队
nowTime[disWin] = disEdTime; //记录该窗口现在已经消耗的时间
if(!win[disWin].empty())
bgTime[win[disWin].front()] = disEdTime;
//下一名客户的开始时间就是上一名客户的结束时间
}

  某窗口全部出队

void disposeAll(int w){ //处理某窗口全部出队
while(!win[w].empty()){
edTime[win[w].front()] = nowTime[w] + needTime[win[w].front()];
//获得用户结束时间
nowTime[w] = edTime[win[w].front()];
//记录当前窗口消耗时间
win[w].pop();
if(!win[w].empty())//记录下一个用户的开始时间
bgTime[win[w].front()] = nowTime[w];
}
}

  之后读入查询,判断所查询的客户的开始时间是否在17:00前,如果在17:00前输出其结束时间,否则输出Sorry。

AC代码

 #include <bits/stdc++.h>
using namespace std;
const int maxw = ; //最大窗口数
const int maxk = 1e3+; //最大客户数
queue<int> win[maxw]; //窗口队列
int nowTime[maxw]; //记录每个窗口当前服务客户已经消耗的时间
int needTime[maxk]; //记录服务每个客户需要消耗的时间
int bgTime[maxk]; //记录每个客户开始被服务的时间
int edTime[maxk]; //记录每个客户服务结束的时间
int n, m, k, q; //n窗口数,m队列长度,k客户数,q查询数
int getMinSize(int &w){ //获得当前排队长度最短的窗口
int minSize = INT_MAX;
for(int i = ; i < n; i++){
if(win[i].size() < minSize){
minSize = win[i].size();
w = i;
}
}
return minSize;
}
void dispose(){ //找到最先处理完的客户所在的窗口并执行出队
int disWin; //记录最先处理完的客户所在的窗口
int disEdTime = INT_MAX; //记录记录最先处理完的客户的结束时间
for(int i = ; i < n; i++){
if(disEdTime > nowTime[i] + needTime[win[i].front()]){
//服务结束时间为当前窗口消耗时间假设处理该客户需要消耗的时间
disWin = i; //记录窗口与结束时间
disEdTime = nowTime[i] + needTime[win[i].front()];
}
}
edTime[win[disWin].front()] = disEdTime; //记录客户结束时间
win[disWin].pop(); //出队
nowTime[disWin] = disEdTime; //记录该窗口现在已经消耗的时间
if(!win[disWin].empty())
bgTime[win[disWin].front()] = disEdTime;
//下一名客户的开始时间就是上一名客户的结束时间
}
void disposeAll(int w){ //处理某窗口全部出队
while(!win[w].empty()){
edTime[win[w].front()] = nowTime[w] + needTime[win[w].front()];
//获得用户结束时间
nowTime[w] = edTime[win[w].front()];
//记录当前窗口消耗时间
win[w].pop();
if(!win[w].empty())//记录下一个用户的开始时间
bgTime[win[w].front()] = nowTime[w];
}
} int main()
{
while(scanf("%d%d%d%d", &n, &m, &k, &q) != EOF){
//输入n窗口数,m队列长度,k客户数,q查询数
memset(nowTime, , sizeof(nowTime));
memset(needTime, , sizeof(needTime));
memset(edTime, , sizeof(edTime));
memset(bgTime, , sizeof(bgTime));
//将所有时间初始化为0
for(int i = ; i <= k; i++){
scanf("%d", &needTime[i]);
//输入服务每个客户所需要的时间
}
int minSize, minWin;
for(int i = ; i <= k; i++){ //遍历所有客户
minSize = getMinSize(minWin); //找到当前排队最短的窗口
if(minSize >= m){ //如果所有窗口的队都满了
dispose(); //执行最先处理完客户所在的窗口出队
minSize = getMinSize(minWin); //重新获得最短的队
}
win[minWin].push(i); //入队
if(win[minWin].empty()){ //每个窗口的第一个客户信息
nowTime[minSize] = ; //当前窗口消耗时间为0
bgTime[i] = ; //第一名客户的开始时间为0
}
}
for(int i = ; i < n; i++){ //遍历所有窗口全部出队
if(!win[i].empty()){
disposeAll(i);
}
}
while(q--){ //获得查询
int query;
int endtime, begintime;
scanf("%d", &query);
endtime = edTime[query];
begintime = bgTime[query];
//获得查询用户的开始与结束时间
int beginhours = + (begintime / );
int beginminutes = begintime % ;
int endhours = + (endtime / );
int endminutes = endtime % ;
if(beginhours >= ){ //开始时间大于17输出Sorry
printf("Sorry\n");
}else
printf("%02d:%02d\n", endhours, endminutes);
}
}
return ;
}

PTA (Advanced Level) 1014 Waiting in Line的更多相关文章

  1. PAT (Advanced Level) 1014. Waiting in Line (30)

    简单模拟题. #include<iostream> #include<cstring> #include<cmath> #include<algorithm& ...

  2. PAT甲级1014. Waiting in Line

    PAT甲级1014. Waiting in Line 题意: 假设银行有N个窗口可以开放服务.窗前有一条黄线,将等候区分为两部分.客户要排队的规则是: 每个窗口前面的黄线内的空间足以包含与M个客户的一 ...

  3. PAT 1014 Waiting in Line (模拟)

    1014. Waiting in Line (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Suppo ...

  4. PAT 甲级 1014 Waiting in Line (30 分)(queue的使用,模拟题,有个大坑)

    1014 Waiting in Line (30 分)   Suppose a bank has N windows open for service. There is a yellow line ...

  5. 1014 Waiting in Line (30分)

    1014 Waiting in Line (30分)   Suppose a bank has N windows open for service. There is a yellow line i ...

  6. PTA(Advanced Level)1036.Boys vs Girls

    This time you are asked to tell the difference between the lowest grade of all the male students and ...

  7. 【PAT Advanced Level】1014. Waiting in Line (30)

    简单模拟题,注意读懂题意就行 #include <iostream> #include <queue> using namespace std; #define CUSTOME ...

  8. PTA 1014 Waiting in Line (30分) 解题思路及满分代码

    题目 Suppose a bank has N windows open for service. There is a yellow line in front of the windows whi ...

  9. PTA(Basic Level)1014.福尔摩斯的约会 && PTA(Advanced Level)1061.Dating

    大侦探福尔摩斯接到一张奇怪的字条:我们约会吧! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm.大侦探很快就明白了,字条上奇 ...

随机推荐

  1. mdadm 软RAID

    mdadm是linux下用于创建和管理软件RAID的命令,是一个模式化命令.但由于现在服务器一般都带有RAID阵列卡,并且RAID阵列卡也很廉价,且由于软件RAID的自身缺陷(不能用作启动分区.使用C ...

  2. C#学习(1):类型约束

    where T : class泛型类型约束 类型参数约束,.NET支持的类型参数约束有以下五种: where T : struct | T必须是一个结构类型 where T : class T必须是一 ...

  3. 使用NPOI时ICSharpCode.SharpZipLib版本冲突问题解决

    系统原来引用的ICSharpCode.SharpZipLib是0.84版本的, 添加了2.3版本的NPOI引用后,报版本冲突错误,因为NPOI用的ICSharpCode.SharpZipLib是0.8 ...

  4. 论文研读之Spinnaker

    论文:Using Paxos to Build a Scalable, Consistent, and Highly Available Datastore Motivation 可扩展性: 随着数据 ...

  5. mongodb 备份脚本

    ###############备份脚本#!/bin/bash basepath="/data/backup/dump$(date +%Y%m%d%H%M%S)" if [ ! -d ...

  6. java从txt文档读写数据

    package com.abin.facade.ws.mail.function; import java.io.BufferedReader; import java.io.File; import ...

  7. [JS] js 判断用户是否在浏览当前页面

    var hiddenProperty = 'hidden' in document ? 'hidden' : 'webkitHidden' in document ? 'webkitHidden' : ...

  8. scrapy入门例子

    使用爬取http://quotes.toscrape.com/内容,网站内容很简单 一. 使用scrapy创建项目 scrapy startproject myscrapy1 scrapy gensp ...

  9. leetcode-55-跳跃游戏

    题目描述: 给定一个非负整数数组,你最初位于数组的第一个位置. 数组中的每个元素代表你在该位置可以跳跃的最大长度. 判断你是否能够到达最后一个位置. 示例 1: 输入: [2,3,1,1,4] 输出: ...

  10. 51.RocketMQ 顺序消费

    大部分的员工早上的心情可能不会很好,因为这时想到还有很多事情要做,压力会大点,一般到下午4点左右,状态会是一天中最好的,因为这时大部分的工作做得差不多了,又快要下班了,当然也不是绝对.要注意记录各下属 ...