国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

PAT甲級1014

2019-11-10 19:08:46
字體:
供稿:網(wǎng)友

1014. Waiting in Line (30)

時間限制400 ms內(nèi)存限制65536 kB代碼長度限制16000 B判題程序Standard作者CHEN, Yue

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 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, customer1 is served at window1 while customer2 is served at window2. Customer3 will wait in front of window1 and customer4 will wait in front of window2. Customer5 will wait behind the yellow line.

At 08:01, customer1 is done and customer5 enters the line in front of window1 since that line seems shorter now. Customer2 will leave at 08:02, customer4 at 08:06, customer3 at 08:07, and finally customer5 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 51 2 6 4 3 534 23 4 5 6 7Sample Output
08:0708:0608:1017:00Sorry
#include<cstdio>#include<queue>#include<algorithm>using namespace std;const int maxn = 22;const int maxk = 1000 + 10;int N, M, K, Q;int nowTime = 0;int CloseTime = (17 - 8) * 60;struct customer{	int id;	int processtime;	int donetime;	customer():donetime(-1){}}customers[maxk];queue<customer> line[maxn],behindQueue;int lastTime[maxn] = { 0 };int main(){	scanf("%d%d%d%d", &N, &M, &K, &Q);//注意N、M的意義	int capacity = N*M;	for (int i = 1; i <= K; i++)	{		scanf("%d", &customers[i].processtime);		customers[i].id = i;		if (i <= capacity)		{			line[(i - 1) % N + 1].push(customers[i]);		}		else			behindQueue.push(customers[i]);//排隊	}	int countC = K;	while (nowTime < CloseTime&&countC)//模擬時間流動,每分鐘檢查一次有不有完成的	{		nowTime++;		for (int i = 1; i <= N; i++)		{			if (!line[i].empty())			{				int donetime = line[i].front().processtime + lastTime[i];				int id = line[i].front().id;				if ((donetime>CloseTime||donetime == nowTime)&&lastTime[i]<nowTime)				{					customers[id].donetime = donetime;					lastTime[i] = donetime;					line[i].pop();					countC--;					if (behindQueue.size())					{						line[i].push(behindQueue.front());						behindQueue.pop();					}				}				else if (lastTime[i] >= nowTime)				{					line[i].pop();					countC--;					if (behindQueue.size())					{						line[i].push(behindQueue.front());						behindQueue.pop();					}				}			}		}	}	int query;	for (int i = 0; i < Q; i++)	{		scanf("%d", &query);		if (customers[query].donetime != -1)			printf("%02d:%02d/n", 8 + customers[query].donetime / 60, customers[query].donetime % 60);		else			printf("Sorry/n");	}}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 海阳市| 巫溪县| 福鼎市| 土默特左旗| 台安县| 阳泉市| 玉门市| 抚宁县| 中江县| 正蓝旗| 大渡口区| 阿图什市| 辉县市| 达孜县| 景泰县| 德清县| 西峡县| 繁昌县| 万荣县| 禄丰县| 新乡县| 得荣县| 淳安县| 琼中| 郁南县| 苏尼特右旗| 旅游| 乌审旗| 永福县| 雷波县| 洪雅县| 贺兰县| 静海县| 武安市| 遂川县| 运城市| 布拖县| 清镇市| 龙里县| 龙里县| 思南县|