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 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 (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

题意分析:

(1)本题模拟银行排队,逻辑上不难,操作起来有点麻烦。银行来了K个客户,银行有N个窗口,每个窗口前有M个位置排队,客户选择最短的队伍排,根据每个客户的序号和服务时间来确定最后客户离开银行的时间。

(2)属于队列的问题,但实际上可以将问题简化:因为每个客户的服务时间是固定的,假设前N*M个客户达到之后排好位置后,他们的离开时间也就确定好了,即每个窗口本次服务结束的时间也就确定了,比如第一个人的服务时间是5min,则本次窗口的服务结束时间点是8:05,这样我们就可以比较这N个窗口当前服务结束的时间点,谁最早结束,谁的队伍最短,在线外等候的第N*M+1个客户选择这个队伍排,以此类推。

(3)每个客户离开的时间等于他前面一个人的离开时间加上他自己的服务时间,于是定义每个队列中的值是前一个值加上这个人的服务时间

(4)为了计算方便,将时间的基点设为0,算出的结果是在银行停留的时间(以分钟计算),最后再换算成小时+8

可能坑点:

(1)这是个大深坑,必须要保证当一个人等待时间大于或等于540分钟的时候,就不能服务了,而不是等待时间加上他的服务时间,言外之意就是,一旦这个人在540分钟之内获得服务,那么无论这个人的服务时间有多长,也要为他服务完,这也是符合实际的。

#include<bits/stdc++.h>
using namespace std;
queue<int>q[105];
int a[2005];//服务时间
int ct[2005];//还需多少时间
int t[2005];//服务结束的时间
int N,M,K,Q;
void clear(queue<int> &q)
{
    queue<int> empty;
    swap(empty, q);
}
int main(){
    cin>>N>>M>>K>>Q;
    for(int i=1;i<=N+1;i++){
        clear(q[i]);
    }
    for(int i=1;i<=K;i++)
    {
        cin>>a[i];
        ct[i]=a[i];
        t[i]=99999;
    }
    //先把他们再队伍里放好
    int p=min(N*M,K);
    for(int i=1;i<=p;i++)//这里出现了错误,后来知道要选择最小的
    {
        int x=i%N;
        if(x==0) x=N;
        q[x].push(i);
    }
    if(K>=N*M+1)
    {
        for(int i=N*M+1;i<=K;i++){
             q[N+1].push(i);
        }
    }
     //先标记最前面一排的人的时间
    int T=0;
    while(1)
    {
         //每次挑出队列最前面的人群中的最少时间
        int min_t=99999;
        int is_all_empty=1;
        for(int i=1;i<=N;i++)
        {
            if(!q[i].empty())
             {
                 min_t=min(min_t,ct[q[i].front()]);
                 is_all_empty=0;
             }
        }
        if(is_all_empty==1){
            break;
        }
        T+=min_t;//从开始到现在过去了T分钟 

         //那么每个人减去这个时间,并把下一个人排进队伍
        for(int i=1;i<=N;i++)
        {
            //cout<<"遍历第"<<i<<"个窗口"<<endl;
            if(!q[i].empty())//要先判断,否则会有段错误,这里错过一次
            {

                 ct[q[i].front()]-=min_t;
                 if(ct[q[i].front()]==0){
                     //cout<<i<<"窗口完成 "<<q[i].front()<<" 时间为"<<T<<endl;
                     //完成了
                     t[q[i].front()]=T; //设置他们结束的时间
                    q[i].pop();
                     //新的人可以入队啦
                    if(!q[N+1].empty())
                    {
                        int x = q[N+1].front();
                        q[N+1].pop();
                        q[i].push(x);
                        //cout<<x<<"加入到 "<<i<<" 窗口"<<endl;
                    }
                }
            }
        }
        //大坑!!!特殊处理
        if(T>=540){
            //仍要坚持把当前再服务的人服务完
            for(int i=1;i<=N;i++)
            {
                if(!q[i].empty())
                 {
                     int x=q[i].front();
                     if(ct[x]!=a[x])//处理到一半的继续处理
                     {
                         t[x]=T+ct[x];
                    }
                 }
            }
            break;
        }
    }
    //输出时间
    for(int i=1;i<=Q;i++)
    {
         int x;
         cin>>x;
         if(t[x]==99999)
        {
             cout<<"Sorry"<<endl;
        }
        else
        {
             int h=t[x]/60;
             int m=t[x]-h*60;
             h+=8;
             if(h<10)
             {
                 cout<<‘0‘;
            }
            cout<<h<<":";
            if(m<10)
            {
                 cout<<‘0‘;
            }
            cout<<m<<endl;
        }

    }
    return 0;
} 
 

原文地址:https://www.cnblogs.com/caiyishuai/p/11291689.html

时间: 2024-08-27 23:08:44

PAT 甲级 1014 Waiting in Line (30 分)(queue的使用,模拟题,有个大坑)的相关文章

1014. Waiting in Line (30)——PAT (Advanced Level) Practise

题目信息: 1014. Waiting in Line (30) 时间限制 400 ms 内存限制 32000 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 rule

PAT甲级——1131 Subway Map (30 分)

可以转到我的CSDN查看同样的文章https://blog.csdn.net/weixin_44385565/article/details/89003683 1131 Subway Map (30 分) In the big cities, the subway systems always look so complex to the visitors. To give you some sense, the following figure shows the map of Beijing

PAT 甲级 1018 Public Bike Management (30 分)(dijstra+dfs case 7 过不了求助!!!)

1018 Public Bike Management (30 分)   There is a public bike service in Hangzhou City which provides great convenience to the tourists from all over the world. One may rent a bike at any station and return it to any other stations in the city. The Pub

PAT 甲级 1068 Find More Coins (30 分) (dp,01背包问题记录最佳选择方案)***

1068 Find More Coins (30 分)   Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which could accept all kinds of coins as payments. However, there was a special

【PAT甲级】1103 Integer Factorization (30分)

1103 Integer Factorization (30分) The K?P factorization of a positive integer N is to write N as the sum of the P-th power of K positive integers. You are supposed to write a program to find the K?P factorization of N for any positive integers N, K an

【PAT甲级】1091 Acute Stroke (30分)

1091 Acute Stroke (30分) One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions are identified in each MRI slice, your job is to calculate the volume of the

PAT甲题题解-1014. Waiting in Line (30)-模拟,优先级队列

题意:n个窗口,每个窗口可以排m人.有k为顾客需要办理业务,给出了每个客户的办理业务时间.银行在8点开始服务,如果窗口都排满了,客户就得在黄线外等候.如果有一个窗口用户服务结束,黄线外的客户就进来一个.如果有多个可选,选窗口id最小的.输出查询客户的服务结束时间. 如果客户在17点(注意是包括的!!!就在这里被坑了,一开始还以为不包括...)或者以后还没开始服务,就输出Sorry如果已经开始了,无论多长都会继续服务的. 思路:建立一个优先级队列,存储在黄线之内的所有客户.对于m*n之前的人,依此

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

简单模拟题. #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include<cstdio> #include<map> #include<queue> using namespace std; struct X { int st; int len; int en; }p[1500]; queue<int>Q[2

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