zoukankan      html  css  js  c++  java
  • 杭电 4883 TIANKENG’s restaurant (求饭店最少需要座椅)

    Description

    TIANKENG manages a restaurant after graduating from ZCMU, and tens of thousands of customers come to have meal because of its delicious dishes. Today n groups of customers come to enjoy their meal, and there are Xi persons in the ith group in sum. Assuming that each customer can own only one chair. Now we know the arriving time STi and departure time EDi of each group. Could you help TIANKENG calculate the minimum chairs he needs to prepare so that every customer can take a seat when arriving the restaurant?
     

    Input

    The first line contains a positive integer T(T<=100), standing for T test cases in all. 

    Each cases has a positive integer n(1<=n<=10000), which means n groups of customer. Then following n lines, each line there is a positive integer Xi(1<=Xi<=100), referring to the sum of the number of the ith group people, and the arriving time STi and departure time Edi(the time format is hh:mm, 0<=hh<24, 0<=mm<60), Given that the arriving time must be earlier than the departure time. 

    Pay attention that when a group of people arrive at the restaurant as soon as a group of people leaves from the restaurant, then the arriving group can be arranged to take their seats if the seats are enough. 
     

    Output

    For each test case, output the minimum number of chair that TIANKENG needs to prepare.
     

    Sample Input

    2
    2
    6 08:00 09:00
    5 08:59 09:59
    2
    6 08:00 09:00
    5 09:00 10:00
     

    Sample Output

    11
    6

     求每一刻饭店的人数,找出最大值

     1 #include<cstdio>
     2 int main()
     3 {
     4     int t,n,i,j,h1,h2,m1,m2,p;
     5     scanf("%d",&t);
     6     while(t--)
     7     {
     8         int b[10000]={0};
     9         int max=0;
    10         scanf("%d",&n);
    11         for(i=0;i<n;i++)
    12         {
    13             scanf("%d %d:%d %d:%d",&p,&h1,&m1,&h2,&m2);
    14             h1=h1*60+m1;
    15             h2=h2*60+m2;
    16             for(j=h1;j<h2;j++)
    17             {
    18                 b[j]+=p;
    19                 max=max>b[j]?max:b[j];
    20             }
    21         }
    22         printf("%d
    ",max);
    23         
    24     }
    25 }
    ——将来的你会感谢现在努力的自己。
  • 相关阅读:
    element ui 权限 全选和半选
    div 内容垂直居中
    ajax 传递list2
    mysql学习03-sql执行加载顺序
    mysql学习02-mysql存储引擎(InnoDB,MyISAM)
    mysql学习01-mysql架构
    没有项目的源码,在eclipse下进行tomcat的远程调试,小计一下。
    win10系统,使用SangforHelperTool诊断工具进行修复时,无法安装虚拟网卡。
    postman在有登录认证的情况下进行接口测试!!!
    MongoDB4.0及以上的版本安装时无法启动服务。
  • 原文地址:https://www.cnblogs.com/yexiaozi/p/5697046.html
Copyright © 2011-2022 走看看