zoukankan      html  css  js  c++  java
  • HDU 4442 Physical Examination【水题】【思维题】

    Physical Examination

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 8143    Accepted Submission(s): 2477


    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≤ai,bi<231.
     

    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.
     

    Source

    现在王鹏要去体检,他一共要体检n个项目,这n个项目每个都有一个队列的人在排队,现在要求你找出王鹏体检完这n项一共要花多少时间?

    输入:输入有多个实例,每个实例第一行为n(0<n≤100000),代表有n个项目队列,然后每行有两个数ai与bi (0≤ai,bi<2^31)。

    ai表示如果他第0秒参加这个体检,需要用的时间。bi表示王鹏从第0秒开始每延迟1秒参加这个项目,需要多花bi秒的时间。(当然ai秒的时间是一定要花的)

    输出:王鹏测完所有项目所要花的最短时间对(365*24*60*60)的余数。


    考虑x和y两个分别在前面的情况。


    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <algorithm>
    #include <queue>
    #include <map>
    using namespace std;
    const int maxn = 100010;
    struct Node {
    	long long a, b;
    }node[maxn];
    
    bool cmp(Node x, Node y)
    {
    	return x.a*y.b <= x.b*y.a;
    }
    
    int main()
    {
    	int n;
    	const int mod = 365 * 24 * 60 * 60;
    	while (~scanf("%d", &n) && n)
    	{
    		long long ans = 0;
    		for (int i = 0; i < n; i++)
    		{
    			scanf("%lld%lld", &node[i].a, &node[i].b);
    		}
    		sort(node, node + n, cmp);
    		for (int i = 0; i < n; i++)
    		{
    			ans = (ans + node[i].a + node[i].b*ans) % mod;
    		}
    		printf("%lld
    ", ans);
    	}
    	return 0;
    }
    
    



    Fighting~
  • 相关阅读:
    SVN还原项目到某一版本(转)
    C# Web Service 不使用服务引用直接调用方法(转)
    动态调用webservice时 ServiceDescriptionImporter类在vs2010无法引用的解决方法 (转)
    log4net示例2-日志输入存入Access(转)
    C# log4net 配置及使用详解--日志保存到文件和Access(转)
    未能解析引用的程序集......因为它对不在当前目标框架“.NETFramework,Version=v4.0,Profile=Client”中的 (转)
    Hello log4net——做一个实用好用的log4net的demo(转)
    JS移动客户端--触屏滑动事件
    js生成二维码实例
    触屏版类似刷新页面文本框获取焦点的同时弹出手机键盘的做法
  • 原文地址:https://www.cnblogs.com/Archger/p/8451593.html
Copyright © 2011-2022 走看看