zoukankan      html  css  js  c++  java
  • PAT 1014. Waiting in Line

    PAT 1014. Waiting in Line (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 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 5
    1 2 6 4 3 534 2
    3 4 5 6 7
    

    Sample Output

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

    分析

    设立结构体,里面包含poptime为队首的人出队(结束)的时间,和endtime为队尾的人结束的时间。poptime是为了让黄线外的人可以计算出哪一个队列先空出人来(poptime最小的那个先有人服务完毕),endtime是为了入队后加上自己本身的服务所需时间可以计算出自己多久才能被服务完毕~且前一个人的endtime可以得知自己是不是需要被Sorry(如果前一个人服务结束时间超过17:00,自己当前入队的人就是sorry),还有一个queue表示所有当前该窗口的排队队列。
    对于前mn个人,也就是排的下的情况下,所有人依次到窗口前面排队。对于mn之后的人,当前人选择poptime最短的入队,让队伍的第一个人出列),如果前面一个人导致的endtime超过17点就标记自己的sorry为true。
    计算时间的时候按照分钟计算,最后再考虑08点开始和转换为小时分钟的形式会比较简便。

    代码如下

    #include<iostream>
    #include<vector>
    #include<queue>
    using namespace std;
    struct window{
    	int poptime,endtime;
    	queue<int> q;
    };
    int main(){
    	int n,m,k,q,index=1;
    	cin>>n>>m>>k>>q;
    	vector<int> time(k+1),result(k+1),sorry(k+1,0);
    	for(int i=1;i<=k;i++)
    	cin>>time[i];
    	vector<window> windows(n+1);
    	for(int i=1;i<=m;i++)
    	for(int j=1;j<=n;j++){
    		if(index<=k){
    		windows[j].q.push(time[index]);
    		if(windows[j].endtime>=540)
    		sorry[index]=1;
    	    windows[j].endtime+=time[index];
    		if(i==1)
    		windows[j].poptime=windows[j].endtime;
    		result[index]=windows[j].endtime;	
    		}
    		index++;
    	}
    	while(index<=k){
    		int tempmin=windows[1].poptime,tempwindow=1;
    		for(int i=2;i<=n;i++){
    			if(windows[i].poptime<tempmin){
    				tempwindow=i;
    				tempmin=windows[i].poptime;
    			}
    		}
    		windows[tempwindow].q.pop();
    		windows[tempwindow].q.push(time[index]);
    		windows[tempwindow].poptime+=windows[tempwindow].q.front();
    		if(windows[tempwindow].endtime>=540)
    		sorry[index]=1;
    		windows[tempwindow].endtime+=time[index];
    		result[index]=windows[tempwindow].endtime;
    		index++;
    	}
    	for(int i=1;i<=q;i++){
    		int query;
    		cin>>query;
    		if(sorry[query]==1) printf("Sorry
    ");
    		else printf("%02d:%02d
    ",(480+result[query])/60,(480+result[query])%60);
    	}
    	return 0; 
    }
    
  • 相关阅读:
    关于Windows窗口框架
    如何获取桌面截图
    浅析Windows安全相关的一些概念
    怎样才算会一门编程语言
    COM思想的背后
    XP之后Windows的一些变化
    智能指针与库
    SOUI开发应用展示2
    在SOUI中支持高分屏显示
    SOUI Editor使用教程
  • 原文地址:https://www.cnblogs.com/A-Little-Nut/p/8203896.html
Copyright © 2011-2022 走看看