//转自:https://blog.csdn.net/apie_czx/article/details/45537627

1014 Waiting in Line (30)(30 分)
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 M customers. Hence when all the N lines are full, all the customers after (and including) the (NM+1)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 customers 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

Each input file contains one test case. Each case starts with a line containing 4 positive integers: N (<=20, number of windows), M (<=10, the maximum capacity of each line inside the yellow line), K (<=1000, number of customers), and Q (<=1000, 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

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

//这个输入还比较复杂。
窗口数 黄线内最多可容纳人数 消费者总人数 查询次数
每个消费者业务办理时间数
要查询的消费者编号

//emmm,每太见过这样的题,所以我应该做不出来了,就把大佬的代码贴过来了,

#include<stdio.h>
#include<queue>
using namespace std;
int serve_time[1001];
int ans[1001];
queue<int> Q[21];
int main(void)
{
int w,cap,cus,k;//分别记录窗口数量、窗口最大人数、顾客数量和查询数量
int i,j;
while(scanf("%d%d%d%d",&w,&cap,&cus,&k) != EOF)
{
for(i = 1; i <= cus; i ++)
{
scanf("%d",&serve_time[i]);
}
for(i = 0; i < w; i ++)
{
if(Q[i].empty() == false)Q[i].pop();//对每个窗口都清空
} int sum = 0;
int count = 1;
for(int ti = 0; ti < 540; ti = ti + 1) //以时间来作为循环,这个很关键
{//还真的是以时间作为循环,我还以为会超时什么的。
for(i = 0; i < w; i ++)//这层循环是说一共有多少个窗口数
{
for(j = 0; j < Q[i].size(); j ++)//对每个窗口单独看
{
if(ti == ans[Q[i].front()]) //如果当前队伍的人服务结束了
{
Q[i].pop();
sum --; if(!Q[i].empty()) //并且计算当前队伍下一个人的结束时间
{
int tmp = Q[i].front();
ans[tmp] = ti + serve_time[tmp];//结束时间为当前时间+顾客的服务时间
}
}
}
} while(sum < w * cap && count <= cus)//比如说一开始的时候,sum=0,那么就相当于初始情况
{
int min = 0;
for(i = 0; i < w; i++)
{
if(Q[min].size() > Q[i].size())
{
min = i;
}//找到人最少的那个队伍
if(Q[min].size() == 0) ans[count] = ti + serve_time[count];
//如果队伍没人则直接开始服务,并且计算结束时间
if(Q[min].size() < cap && count <= cus)//而且当前的总人数不超
{//这里也不是while循环,知识针对一个来说的。
Q[min].push(count);//否则把让下一个顾客进队
count ++;
sum ++;//sum这里表示的是队列内的总人数。
}
}
}
} for(i = 0; i < k; i ++)
{
int query;
scanf("%d",&query);
if(ans[query] == 0)puts("Sorry");//值为0说明没有被开始服务,只能Sorry
else
{
int hour,min;
hour = 8 + ans[query] / 60;//这里操作真厉害
min = ans[query] % 60;
printf("%02d:%02d\n",hour,min);//把时间转换为标准格式并输出
//原来还可以在这里转换成时间,我还想每次结束都转换呢map<int,string>这样确实不太好。
}
}
}
return 0;
}

//对时间进行循环,模拟仿真,再对队列进行循环。

//我还是觉得很难。

PAT Waiting in Line[转载]的更多相关文章

  1. PAT甲级1014. Waiting in Line

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

  2. PAT 1014 Waiting in Line (模拟)

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

  3. 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 ...

  4. PTA (Advanced Level) 1014 Waiting in Line

    Waiting in Line Suppose a bank has N windows open for service. There is a yellow line in front of th ...

  5. pat1014. Waiting in Line (30)

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

  6. 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 ...

  7. PAT 1014. Waiting in Line

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

  8. PAT A1014 Waiting in Line (30 分)——队列

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

  9. PAT甲级——A1014 Waiting in Line

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

随机推荐

  1. 【cs229-Lecture5】生成学习算法:1)高斯判别分析(GDA);2)朴素贝叶斯(NB)

    参考: cs229讲义 机器学习(一):生成学习算法Generative Learning algorithms:http://www.cnblogs.com/zjgtan/archive/2013/ ...

  2. iframe内点击a标签禁止滚动到顶部

    在iframe内加载的表中,操作下的按钮用a标签布局,但是会出现一个非常不好的体验,就是当页面有滚动条的时候,点击a标签,列表会自动滚动到顶部. 首先看我的a标签: <a href=" ...

  3. 题目1208:10进制 VS 2进制(进制转换以及大数保存问题)

    题目链接:http://ac.jobdu.com/problem.php?pid=1208 详细链接:https://github.com/zpfbuaa/JobduInCPlusPlus 参考代码: ...

  4. Linux日志五大命令详解

    1.who 命令 who 命令查询 utmp 文件并报告当前登录的每个用户.Who 的缺省输出包括用户名.终端类型.登录日期及远程主机.使用该命令,系统管理员可以查看当前系统存在哪些不法用户,从而对其 ...

  5. 用mongoose实现mongodb增删改查

    //用户 var mongoose = require("mongoose"), setting = require("./setting"); //配置连接数 ...

  6. Scala日期处理

    计算时间间隔  val d = new java.text.SimpleDateFormat("yyyyMMdd HH:mm:ss").format(new java.util.D ...

  7. MongoDB 日记参数

    MongoDB中主要有四种日志.分别是系统日志.Journal日志.oplog主从日志.慢查询日志等.这些日志记录着Mongodb数据库不同方便的踪迹.下面分别介绍这四种日志: 1.系统日志 系统日志 ...

  8. 消息通讯之关于消息队列MQ必须了解的相关概念

    目录 系统通讯方式有哪些? 消息队列的应用场景 消息队列通讯模型 常见的消息协议 AMQP MQTT ATOMP JMS 小结 系统通讯方式有哪些? RPC调用 RPC 全称 Remote Proce ...

  9. 洛谷P2564 生日礼物【单调队列】

    题目背景 四川2009NOI省选 题目描述 小西有一条很长的彩带,彩带上挂着各式各样的彩珠.已知彩珠有N个,分为K种.简单的说,可以将彩带考虑为x轴,每一个彩珠有一个对应的坐标(即位置).某些坐标上可 ...

  10. windows10配置tensorflow深度学习环境(GPU版)各种坑

    我们配置一个tensorflow-gpu版的深度学习环境 windows10 64 python3.5 vs2017(需要C++部分) cuda9.0 cudnn7.1 GeForce GTX1060 ...