• 1017 Queueing at Bank (25 分)(优先队列)


    Suppose a bank has K windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. All the customers have to wait in line behind the yellow line, until it is his/her turn to be served and there is a window available. It is assumed that no window can be occupied by a single customer for more than 1 hour.

    Now given the arriving time T and the processing time P of each customer, you are supposed to tell the average waiting time of all the customers.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains 2 numbers: N (<=10000) - the total number of customers, and K (<=100) - the number of windows. Then N lines follow, each contains 2 times: HH:MM:SS - the arriving time, and P - the processing time in minutes of a customer. Here HH is in the range [00, 23], MM and SS are both in [00, 59]. It is assumed that no two customers arrives at the same time.

    Notice that the bank opens from 08:00 to 17:00. Anyone arrives early will have to wait in line till 08:00, and anyone comes too late (at or after 17:00:01) will not be served nor counted into the average.

    Output Specification:

    For each test case, print in one line the average waiting time of all the customers, in minutes and accurate up to 1 decimal place.

    Sample Input:

    7 3
    07:55:00 16
    17:00:01 2
    07:59:59 15
    08:01:00 60
    08:00:00 30
    08:00:02 2
    08:03:00 10
    

    Sample Output:

    8.2
    

    题目大意:

    有n个客户,k个窗口。已知每个客户的到达时间和需要的时长,如果有窗口就依次过去,如果没有窗口就在黄线外等候(黄线外只有一个队伍,先来先服务),求客户的平均等待时长。银行开放时间为8点到17点,再8点之前不开门,8点之前来的人都要等待,在17点后来的人不被服务。

    分析:

    用一个结构体存储客户的到达时间和办理业务时间~首先把所有hh:mm:ss格式的时间全化成以当天0点为基准的秒数。注意晚于17:00的客户不算在内~既然客户是排队的,那么排序后对于每个客户都是同样的处理方式~使用一个优先队列维护窗口办理完业务的时间~如果最早结束服务的窗口时间早于客户的到达时间,不需要等待,直接执行 q.push(p[i].come + p[i].time);否则客户的等待时间是q.top() - p[i].come~

    原文链接:https://blog.csdn.net/liuchuo/article/details/54573734

    题解

    • 优先队列:priority_queue<int,vector<int>,greater<int> > q;
      这种是值小的优先;less<int>是值大的优先(默认)。
    • 思路非常nice~基本就是靠一个优先队列的最小值与每一位顾客的到达时间进行比较。
    #include <bits/stdc++.h>
    
    using namespace std;
    const int maxn=10005;
    struct person
    {
        int come,time;
    }p[maxn];
    bool cmp(person a,person b)
    {
        return a.come<b.come;
    }
    int cnt,sum;
    double total;
    int main()
    {
    #ifdef ONLINE_JUDGE
    #else
        freopen("1.txt", "r", stdin);
    #endif
        int n,k,h,m,s,tt;
        scanf("%d %d",&n,&k);
        for(int i=0;i<n;i++){
            scanf("%d:%d:%d %d",&h,&m,&s,&tt);
            sum=h*3600+m*60+s;
            if(sum>61200) continue;
            p[cnt].come=sum;
            p[cnt].time=tt*60;
            cnt++;
        }
        sort(p,p+cnt,cmp);
        priority_queue<int,vector<int>,greater<int> > q;
        for(int i=0;i<k;i++) q.push(28800);
        for(int i=0;i<cnt;i++){
            if(p[i].come<q.top()){
                total+=(q.top()-p[i].come);
                q.push(q.top()+p[i].time);
                q.pop();
            }else{
                q.push(p[i].come+p[i].time);
                q.pop();
            }
        }//cout<<cnt<<" "<<total<<endl;
        (!cnt) ? printf("0.0
    ") : printf("%.1f
    ",total/60/cnt);
        return 0;
    }
    

    本文来自博客园,作者:勇往直前的力量,转载请注明原文链接:https://www.cnblogs.com/moonlight1999/p/15518784.html

  • 相关阅读:
    Android应用程序注冊广播接收器(registerReceiver)的过程分析
    智能生活 “视”不可挡——首届TCL杯HTML5智能电视开发大赛等你来挑战
    点滴的积累---J2SE学习小结
    公开课
    iOS学习之 plist文件的读写
    【STL】关联容器 — hash_set
    《Pro Android Graphics》读书笔记之第三节
    第一章. ActionScript 语言基础
    JAVA数组的定义及用法
    MS-SQLSERVER中的MSDTC不可用解决方法
  • 原文地址:https://www.cnblogs.com/moonlight1999/p/15518784.html
Copyright © 2020-2023  润新知