(ZOJ) 3334 二分+贪心(二分double的写法)

来源:互联网 发布:文字抓取软件 编辑:程序博客网 时间:2024/06/06 13:13

这题的关键是想到二分医生们共同工作的时间,因为病人的check时间是可以被无限分割的只要保证同一时刻每一个病人只被一个医生check,同时每一个医生在一个时刻只check一个病人,因为医生工作的条件是要么所有医生一起工作,要么只有一个医生工作,所以要最大化医生共同工作的时间就可以最小化完成check的总时间,还有一点就是因为病人check时间可以被分割和组合,假设医生的共同工作时间为X,这每一个病人所占有的医生共同检查的时间是min(X, pi), 如果所有病人占有的共同检查的时间的和小于m * X,那就使得每位医生工作的时间达不到X,否则就是可以达到的,然后就这样二分即可。


还有这个题目使我第一次写二分double,还是有很多double的精度误差要好好考虑,还有二分的停止条件,以及如何缩小范围,这些还得继续学习。


Body Check

Time Limit: 1 Second      Memory Limit: 32768 KB      Special Judge

Due to the spread of H1N1 all over the world, the king of Kingdom atouSK is so afraid that he decides to ask all his people to do a body check, no matter how much money it will take. Thus, the king calls up m of the best doctors across the kingdom to finish the task. The docotrs of Kingdom atouSK are selfish. If some of them are asked to work while others of them can take a rest, the docotrs who need to work will get angry and make mistakes at their work time. However, there is one exception, when just one of them needs to work and the others can have a rest, the other doctors will be united and report to the king if the working doctor makes mistakes, so the working doctor needs to do the job alone carefully (How poor!). Therefore, all the m docotrs need to work together or only one of them does the work at certain time.

There are n people in Kingdom atouSK, and it takes different people differnt time to finish the body check. A person can do parts of the check by one doctor and later move to another doctor to continue the check. In other words, a person can do any part of the body check by any docotr at any time, all depending on the doctors' arrangement. But of course, a personCANNOT do the check by two or more doctors at the same time! Suppose the chosen m docotrs are so excellent that they all work at the same efficiency, but they should be focused and each CANNOT check more than one people at the same time.

Though the king doesn't care about the money, he is so concerned about the time to finish all the checks, because the later all the checks finish, the more likely the disease will spread. The king is too busy, so he asks you to calculate the shortest time needed to finish all the body checks.

Input

There may be multiple cases. In each case, there are two integers in the first line, m (0 < m <= 1000) and n (0 < n <= 1000). In the second line, there are n positive real numbers, the ithone indicating the time needed for the ith person to finish the check, not exceeding 1000000.

Output

Output the shortest time needed to finish all the body checks in one line for each case.

Answer having a relative error less than 1e-9 will be accepted.

Sample Input

3 21.0 2.02 21.0 2.02 31.00 2.0 3.0

Sample Output

3.00002.00003.0000

#include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <map>#include <set>#include <vector>#include <queue>#include <cmath>using namespace std;const double eps = 1e-8;//改成1e-9之后会TLE,在遇到double是精度太高容易TLE//因此处理double一定要注意double num[1005];int cmp(double x){    if(abs(x) < eps) return 0;    return x > 0 ? 1 : -1;}int main(){    int m, n;    while(scanf("%d%d", &m, &n) != EOF)    {        double sum = 0.0;        for(int i = 0; i < n; ++i)        {            scanf("%lf", &num[i]);            sum += num[i];        }        if(m > n)        {            printf("%.4f\n", sum);            continue;        }        double l = 0.0, r = sum;        while(cmp(r - l))        {            double mid = (l + r) / 2;            double tmp = 0.0;            for(int i = 0; i < n; ++i)                tmp += min(mid, num[i]);            if(cmp(tmp - m * mid) < 0) r = mid;            else l = mid;        }        printf("%.4f\n", sum - (m - 1) * r);    }    return 0;}

原创粉丝点击