`
linest
  • 浏览: 155489 次
  • 性别: Icon_minigender_1
  • 来自: 内蒙古
社区版块
存档分类
最新评论

pat-1017* Queueing at Bank

    博客分类:
  • pat
 
阅读更多
银行8点至17点开 有固定窗口数

来早了要等,没窗口要等,17点后才来就无视

求平均等待时间, 被无视的不统计

注意不是17点一定关门,只要是17点前来的都要服务,即使可能超时

下面代码完全模拟秒数,先排序顾客,滤掉17点后来的
对于每一秒,检查窗口的情况
总体思路是以时间为中心
#include<iostream>
using namespace std;
#include<string>
#include<vector>
#include<stdio.h>
#include<algorithm>
#include<queue>



struct Customer
{
	int arrive;
	int cost;
};

int time2int(string s)   
{   
    int time = 0;   
    int loc;   
    int base = 3600;   
    string tmp = s;   
    for(int i=1;i<=3;i++)   
    {   
        loc = tmp.find(":");   
        time += atoi(tmp.substr(0,loc).c_str())*base;   
        tmp = tmp.substr(loc+1);   
        base /= 60;   
    }   
  
    return time;   
}   
  
string int2time(int time)   
{   
    string s;   
    char part[3];   
       
    for(int i=1;i<=3;i++)   
    {   
        sprintf(part,"%02d",time%60);   
        s = string(part) + s;   
        time /= 60;   
        if(i!=3)   
            s = ":"+s;   
    }   
    return s;   
}   

bool compare(Customer a,Customer b)
{
	return a.arrive < b.arrive;
}

// care people come too early  they must wait
int main()
{
	int N;//customer
	int K;//window
	vector<Customer> wait;
	vector<Customer> win;
	vector<Customer> tmp;
	string time;
	int need;

	int total = 0;
	int available;
	int allcus = 0;

	cin>>N;
	cin>>K;
	available = K;
	

	while(N--)
	{
		Customer c;
		cin>>time;
		c.arrive = time2int(time);
		cin>>need;
		c.cost = need * 60;
		if(c.arrive <= 17*3600)  //eliminate customer coming too late
		{
			wait.push_back(c);
			allcus ++;
		}
	}
	sort(wait.begin(),wait.end(),compare);
	
	//serving time
	for(int t = 8*3600; !wait.empty() ;t++)
	{
		//may off at same time
		for(int i = 0;i<win.size();i++)
		{
			win[i].cost --;
			if(win[i].cost == 0)
				available++;   //off window
			else
				tmp.push_back(win[i]);
		}
		win = tmp;
		tmp.clear();
		//on window
		while(available > 0 && wait.size() > 0 && t >= wait[0].arrive)
		{
				win.push_back(wait[0]);
				available --;
				total += t - wait[0].arrive;   //wait time for served customer
				wait.erase(wait.begin());
		}

	}

	if(allcus == 0)
		printf("%.1f\n",0.0);
	else
	{
		double avg = total/(60.0*allcus);
		printf("%.1f\n",avg);
	}

}




网上看到下面代码,效率要高
采用优先队列,自动维护顺序,每次取最小
总体思路以顾客为中心
每次取出最近一个顾客,最近一个窗口

如果窗口时间大于顾客时间,则意味着顾客要等
如果顾客时间大于窗口时间,说明窗口空闲,用户来了即可,不用等,此时把用户的时间赋给窗口,相当于跳过了空闲时间

#include<iostream>
#include<iomanip>
#include<queue>
using namespace std;

struct window
{
   int mm;
   int hh;
   int ss;
   bool operator<(const window& a)const
   {
       if(hh>a.hh)
           return true;
      else if(hh==a.hh&&mm>a.mm)
          return true;
     else if(hh==a.hh&&mm==a.mm&&ss>a.ss)
         return true;
     else
         return false;
    }
};

struct customer
{
    int h;
    int m;
    int s;
    int last;
 bool operator<(const customer& a)const
 {
     if(h>a.h)
       return true;
     else if(h==a.h&&m>a.m)
       return true;
     else if(h==a.h&&m==a.m&&s>a.s)
       return true;
     else
       return false;
  }
};

priority_queue<window> bank;
priority_queue<customer> cu;

int main()
{ 
    int n,k,i;
    cin>>n>>k;
    window w;
    for(i=0;i<k;i++)
    {
        w.ss=0;
        w.mm=0;
        w.hh=8;
        bank.push(w);
     }
    customer cust;
    for(i=0;i<n;i++)
    {
        cin>>cust.h;
        getchar();
        cin>>cust.m;
        getchar();
        cin>>cust.s>>cust.last;
       cu.push(cust);
    }
    int c=0;
    double total=0;
    while(!cu.empty())
    {
         cust=cu.top();
         cu.pop();
         if(cust.h>17||(cust.h==17&&cust.m)||(cust.h==17&&!cust.m&&cust.s))
             break;
         c++;
        w=bank.top();
        bank.pop();
       if(cust.h<w.hh||(cust.h==w.hh&&cust.m<w.mm)||(cust.h==w.hh&&cust.m==w.mm&&cust.s<w.ss))
       {
            total+=(w.hh-cust.h)*60.0+(w.mm-cust.m)+(w.ss-cust.s)/60.0;
            w.mm+=cust.last;
            w.hh+=w.mm/60;
            w.mm%=60;
      }
      else  //have window but the customer not come yet  so no need to wait
      {
            w.ss=cust.s;
            w.mm=cust.m+cust.last;
			w.hh=cust.h+w.mm/60;
            w.mm%=60;
       }
      bank.push(w);
   }
 cout<<fixed<<setprecision(1)<<total/c<<endl;
 return 0;
}
分享到:
评论

相关推荐

    cisco路由器配置大全

    - **queueing**:显示队列设置。 - **registry**:功能注册信息。 - **rhosts**:远程主机文件。 - **rif**:RIF存储器入口。 - **route-map**:路由器信息。 - **sdlle**:显示sdlc-llc2转换信息。 - **services**...

    Cisco 路由器常用命令.txt

    - **queueing**:显示队列信息。 - **registry**:显示注册表信息。 - **rhosts**:显示远程主机信息。 - **rif**:显示RIF信息。 - **route-map**:显示路由映射信息。 - **sdlle**:显示SDLC-LLC2转换信息。 - **...

    Introduction to IP and ATM Design and Performance

    - **单源流体流动分析(Fluid-flow Analysis of a Single Source – Per-VC Queueing)**:使用流体流动模型来分析单个源的队列行为。 - **多个相同类型的开关/关源(Multiple ON/OFF Sources of the Same Type)**:...

    unix内核开发

    - **ALTQ_CBQ**:支持 CBQ(Class-Based Queueing)类基于队列调度算法。 - **ALTQ_RED**:支持 RED(Random Early Detection)随机早期检测机制。 - **ALTQ_RIO**:支持 RIO(Red-In/Red-Out)机制。 - **ALTQ_...

    Queueing Theory

    《Queueing Theory: A Linear Algebraic Approach》是一本深入探讨队列理论及其应用的重要著作,由莱斯特·利普斯基(Lester Lipsky)教授撰写。本书第二版在原有基础上进行了更新和完善,不仅适用于计算机科学与...

    排队论模型

    - **Queueing Toolbox**:MATLAB的一个工具箱,提供了多种排队模型的构建和分析功能。 - **模拟与仿真**:编写MATLAB代码模拟排队过程,可以调整参数观察系统性能的变化。 - **数据分析**:利用MATLAB进行数据...

    Cisco系列网络设备测试命令大全

    **show queueing [fair|priority|custom]** - **功能**:查看接口上队列的设置和操作。 - **应用场景**:在优化网络流量时,确保流量分类和优先级处理符合预期。 ##### 2. **show queue e0/1** - **功能**:...

    Linux的高级路由和流量控制HOWTO中文版.pdf

    - **队列机制**:如PFIFO(Priority Fast Queue)、TBF(Token Bucket Filter)、SFQ(Stochastic Fair Queueing)等。 - **队列规定**:指定了如何处理不同类型的流量,包括优先级设置、限速等。 - **分类队列...

    LWIP之opt.h配置含义

    - **ARP_QUEUEING**: 支持ARP请求的排队。 - **ETHARP_TRUST_IP_MAC**: 表示是否信任接收到的IP/MAC绑定。 - **IP_FORWARD**: 开启或禁用IP数据包转发。 - **IP_OPTIONS_ALLOWED**: 允许IP选项。 - **IP_...

    simumation

    - **排队论**(Queueing Theory):研究服务系统中的等待和服务过程的数学理论,常用于分析排队现象,比如顾客到达和被服务的过程。 #### 标签:simulation kejian(模拟课件) - **教学目标**:本课件旨在帮助...

    云计算数据中心网络技术全面剖析(图)

    - VOQ(Virtual Output Queueing):虚拟输出队列机制,用于优化网络拥塞情况下的数据流控制。 - **应用场景**: - Clos网络适用于高密度、高流量的数据中心环境。 - VOQ有助于提高网络性能和稳定性。 #### 四...

    h3c se GB0-390

    - **PQS (Packet Queueing System)**:包排队系统,用于网络中的流量管理。 - **PBX (Private Branch Exchange)**:专用分组交换机,一种用于企业内部电话通信的交换设备。 - **T1**:一种提供1.544 Mbps带宽的数字...

    AliSQL性能优化与功能突破的演进之路

    - **排队论(Queueing Theory)及其应用**: 应用排队理论对系统性能进行分析和优化。 - **TCP Incast Congestion**: 针对TCP协议下的拥塞控制进行优化。 - **Pagestack**: 实现了页面堆栈机制以优化存储管理。 ### ...

    常用的路由器命令 网络基础知识

    38. **show queueing**: 显示队列设置。 39. **show registry**: 显示功能注册信息。 40. **show rhosts**: 显示远程主机文件信息。 41. **show rif**: 显示RIF(Routing Information Format)存储条目。 42. **show...

    rabbitmq面试题.pdf

    什么是消息队列(Message Queueing),使用消息队列有什么好处?** - **定义:** 消息队列是一种用于存储待处理消息的数据结构,可以跨进程、跨机器甚至跨网络传输。 - **好处:** - **解耦:** 允许生产者和消费...

    CISCO 12000

    - **VoQ (Voice Over Queueing)**:针对语音流量优化排队机制,减少延迟并提高语音质量。 - **HOLB (Head-of-Line Blocking)**:避免数据包在队列头部被阻塞的情况发生,提高网络效率。 - **RED (Random Early ...

    MSOM conference

    20. **Pareto Improving Coordination Policies in Queueing Systems: Applications to Flow Control in Emergency Medical Services** - **演讲者**:Hung Tuan De - **内容概述**:该报告探讨了排队系统中的...

Global site tag (gtag.js) - Google Analytics