zoukankan      html  css  js  c++  java
  • HDU 4442 Physical Examination

    Physical Examination
    Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

    Description

    WANGPENG is a freshman. He is requested to have a physical examination when entering the university. 
    Now WANGPENG arrives at the hospital. Er….. There are so many students, and the number is increasing! 
    There are many examination subjects to do, and there is a queue for every subject. The queues are getting longer as time goes by. Choosing the queue to stand is always a problem. Please help WANGPENG to determine an exam sequence, so that he can finish all the physical examination subjects as early as possible.
     

    Input

    There are several test cases. Each test case starts with a positive integer n in a line, meaning the number of subjects(queues). 
    Then n lines follow. The i-th line has a pair of integers (ai, bi) to describe the i-th queue: 
    1. If WANGPENG follows this queue at time 0, WANGPENG has to wait for ai seconds to finish this subject. 
    2. As the queue is getting longer, the waiting time will increase bi seconds every second while WANGPENG is not in the queue. 
    The input ends with n = 0. 
    For all test cases, 0<n≤100000, 0≤a i,b i<2 31.
     

    Output

    For each test case, output one line with an integer: the earliest time (counted by seconds) that WANGPENG can finish all exam subjects. Since WANGPENG is always confused by years, just print the seconds mod 365×24×60×60.
     

    Sample Input

    5 1 2 2 3 3 4 4 5 5 6 0
     

    Sample Output

    1419

    Hint

     In the Sample Input, WANGPENG just follow the given order. He spends 1 second in the first queue, 5 seconds in the 2th queue, 27 seconds in the 3th queue, 169 seconds in the 4th queue, and 1217 seconds in the 5th queue. So the total time is 1419s. WANGPENG has computed all possible orders in his 120-core-parallel head, and decided that this is the optimal choice.
     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<algorithm>
     4 using namespace std;
     5 struct Node
     6 {
     7     long long x;
     8     long long y;
     9 }a[100005];
    10 bool cmp(Node f,Node g)
    11 {
    12     return f.x*g.y<f.y*g.x;
    13 }
    14 int main()
    15 {
    16     int n;
    17     int i,j;
    18     long long s;
    19     while(scanf("%d",&n)!=EOF && n!=0)
    20     {
    21         s=0;
    22         for(i=1;i<=n;i++)
    23             scanf("%I64d %I64d",&a[i].x,&a[i].y);
    24         sort(a+1,a+n+1,cmp);
    25         //long long o=0;
    26         for(i=1;i<=n;i++)
    27         {
    28             s=(s+(a[i].x+s*a[i].y))%(365*24*60*60);
    29             //o=o+l;
    30         }
    31         printf("%I64d
    ",s);
    32     }
    33     return 0;
    34 }
    View Code
  • 相关阅读:
    springboo 添加logback日志
    logback配置日志输出
    认知升级:提升理解层次的NLP思维框架
    2019第29周日
    《如何有效社交》晨读笔记
    控制论模型&心流模型&波模型
    数学中常见的思维模型
    分布式服务跟踪系统
    Spring Cloud Sleuth
    微服务调用跟踪
  • 原文地址:https://www.cnblogs.com/cyd308/p/4771459.html
Copyright © 2011-2022 走看看