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 }
    ——将来的你会感谢现在努力的自己。
  • 相关阅读:
    python 适合的才是最好的
    [转]linux 同步IO: sync、fsync与fdatasync
    Java Metrics系统性能监控工具
    [转]mysql共享锁和排它锁
    基于空间数据库MongoDB实现全国电影票预定系统
    sharing-jdbc分库分表规则
    乐观锁更新失败处理小坑
    通过MessageFormat进行字符格式拼接,比String.format跟方便
    通过jvisualvm监控fullgc
    防止重复提交
  • 原文地址:https://www.cnblogs.com/yexiaozi/p/5697046.html
Copyright © 2011-2022 走看看