Suppose a bank has N windows open for service.

一个银行有N个服务的窗口

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.

在每个窗口前面的黄线以内能够包含M个顾客

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.

因此,当所有N条线,所有的顾客中第N*M+1位顾客必须在黄线后等待

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

顾客i将会花费Ti分钟处理自己的交易流程

  • The first N customers are assumed to be served at 8:00am.

前面N个顾客假定从早上8点开始被服务

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.

现在我5位顾客,花费的时间分别是12643

At 08:00 in the morning, customer1 is served at window1 while customer2 is served at window2.

在早上8点,顾客1在窗口1,顾客2在窗口2

Customer3 will wait in front of window1 and customer4 will wait in front of window2.

顾客3等在窗口1,顾客4等在窗口2

Customer5 will wait behind the yellow line.

顾客5等在黄线后

At 08:01, customer1 is done and customer5 enters the line in front of window1 since that line seems shorter now.

8点01分,顾客1完成了,顾客5进入线内,到了队伍最短的窗口1

Customer2 will leave at 08:02, customer4 at 08:06, customer3 at 08:07, and finally customer5 at 08:10.

顾客2,在8点02离开,顾客4.。。。。。。。

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

每个输入文件包含一个测试用例,每个测试用例由4个整数开始,N, M, K, Q

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

下面K个正整数表示K顾客花费的时间

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.

最后一行Q个整数,代表那些想要询问他们想要询问他们到底花费了多少时间的人。顾客的编号从1到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.

对于q个顾客,打印一行时间,他完成的时间,格式是HH:MM,HH是08-17,MM是00-59。记住银行每天17:00关门,对于那些不能再17:00完成的业务的,你需要输出soory

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
题目的意思已经很明显了,银行排队,已经很明显了,数据结构用队列就行了,每个窗口一个队列,然后到时间了完成了出队,然入队,主要考验模拟时的逻辑能力。用queue会简单一些。
 

最新文章

  1. WebRTC的一个例子
  2. 数据库设计范式1&mdash;&mdash;三范式
  3. 移动OA,致我们终将逝去的青春(程序员版)[转]
  4. 原生态js,鼠标按下后,经过了那些单元格
  5. liunx系统计划任务管理(at/crond调度)
  6. oracle函数,查询,事务
  7. [iOS] 使用xib做为应用程序入口 with Code
  8. cordova插件iOS平台实战开发注意点
  9. Azure Bill
  10. servlet登录
  11. h.264直接预测
  12. Varnish 4.0
  13. ABP 框架webapi设置跨域
  14. 时区,GMT时间,UTC时间,UNIX时间戳
  15. mysql判断表里面一个逗号分隔的字符串是否包含单个字符串、查询结果用逗号分隔
  16. BZOJ4811 [Ynoi2017]由乃的OJ 树链剖分
  17. Linux Shell脚本编程while语句案例
  18. base64的编码
  19. Maven编译错误记录:Some Enforcer rules have failed
  20. Android WebView漏洞(转)

热门文章

  1. 【Machine Learning in Action --3】决策树ID3算法预测隐形眼睛类型
  2. Javascript兑现图片预加载【回调函数,多张图片】 (转载)
  3. app测试--稳定性测试
  4. MyBatis 错误:Invalid bound statement (not found)
  5. perl Socket接收超时设置
  6. 有关webapplicationcontext的初始化
  7. wireshark 包过滤
  8. webdriver入门
  9. linux的pvtrace环境配置
  10. 在Java 线程中返回值的用法