• HDU 4442 排队贪心


    Physical Examination

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
    Total Submission(s) : 15   Accepted Submission(s) : 6
    Problem 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[sub]i[/sub],b[sub]i[/sub]<2[sup]31[/sup].
     

    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. [/hint]

    2012京华区域赛题簪2016CSUFT训练赛(4)

    题意:每个科目检查时间和等待时间都不同,第一个输入为n种科目检查也就是n个队,比如第一行为1队,1,2,意思是排完1队需要1秒,但排其他队的时候另外的队伍是要等待且队伍变长的,2就是每等待1秒,排完这个队伍的时间增加2秒。要求以最快的时间排完整个队伍。

    典型贪心思想,模拟一遍就知道如何贪了,比如1队(a1,b1),2队(a2,b2),先排1队再排二队的总时间是a1+b2*a1+a2,先排2队再排1队的总时间是a2+b1*a2+a1,由此公式可以看出每个队伍的固定排时是一定要加上的,只用比较b2*a1,b1*a2的大小就行了,直接排序即可。

    注意的是每次sum的累加都要对MOD取模一次


    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    
    using namespace std;
    typedef long long ll;
    const int mod = 365*24*60*60;
    const int maxn = 100000+10;
    
    struct ee{
        ll t1;
        ll t2;
    }e[maxn];
    
    bool cmp(ee a,ee b)
    {
        return a.t1*b.t2<a.t2*b.t1;
    }
    
    int main(){
        int n,i;
        while(scanf("%d",&n)&&n){
        for(i=0;i<n;i++){
            scanf("%I64d%I64d",&e[i].t1,&e[i].t2);
        }
        sort(e,e+n,cmp);
        ll sum = 0;
        for(i=0;i<n;i++)
         sum = (sum + sum*e[i].t2 + e[i].t1) % mod;
    
        printf("%I64d
    ",sum);
        }
        return 0;
    }
    


  • 相关阅读:
    关于利用注射点判断数据库web是否分离
    springmvc中使用MockMvc测试controller
    springmvc中使用MockMvc测试controller
    小哥哥教你100%安装Win10专业版永久激活版(全网独一无二)
    Python爬虫入门教程 62-100 30岁了,想找点文献提高自己,还被反爬了,Python搞起,反爬第2篇
    服务器Servlet返回信息在浏览器无法显示
    nacos 系列
    如何用产品经理的思维设计移动报表
    【讲师专访】Oracle ACE 总监侯圣文:不懂开发的运维终将被淘汰
    我非要捅穿这 Neutron(四)Open vSwitch in Neutron
  • 原文地址:https://www.cnblogs.com/mingrigongchang/p/6246215.html
Copyright © 2020-2023  润新知