POJ 3104 Drying

Drying

Time Limit: 2000ms
Memory Limit: 65536KB
This problem will be judged on PKU. Original ID: 3104
64-bit integer IO format: %lld      Java class name: Main

It is very hard to wash and especially to dry clothes in winter. But Jane is a very smart girl. She is not afraid of this boring process. Jane has decided to use a radiator to make drying faster. But the radiator is small, so it can hold only one thing at a time.

Jane wants to perform drying in the minimal possible time. She asked you to write a program that will calculate the minimal time for a given set of clothes.

There are n clothes Jane has just washed. Each of them took ai water during washing. Every minute the amount of water contained in each thing decreases by one (of course, only if the thing is not completely dry yet). When amount of water contained becomes zero the cloth becomes dry and is ready to be packed.

Every minute Jane can select one thing to dry on the radiator. The radiator is very hot, so the amount of water in this thing decreases by k this minute (but not less than zero — if the thing contains less than k water, the resulting amount of water will be zero).

The task is to minimize the total time of drying by means of using the radiator effectively. The drying process ends when all the clothes are dry.

 

Input

The first line contains a single integer n (1 ≤ n ≤ 100 000). The second line contains ai separated by spaces (1 ≤ ai ≤ 109). The third line contains k (1 ≤ k ≤ 109).

Output

Output a single integer — the minimal possible number of minutes required to dry all clothes.

 

Sample Input

sample input #1
3
2 3 9
5

sample input #2
3
2 3 6
5

Sample Output

sample output #1
3

sample output #2
2

Source

 
解题:二分,注意烘干需要减一,因为那个1是自然掉的,先把时间内可以自然掉的算出来,剩下的烘干
 
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <algorithm>
 4 #include <climits>
 5 #include <cmath>
 6 using namespace std;
 7 typedef long long LL;
 8 const int maxn = 1000010;
 9 const int INF = 0x3f3f3f3f;
10 int n,d[maxn],k;
11 bool check(int mid){
12     LL tmp = 0;
13     for(int i = n-1; i >= 0 && d[i] > mid; --i){
14          int p = (d[i] - mid)/(k - 1);
15          if(p*(k - 1) < d[i] - mid) p++;
16          tmp += p;
17         if(tmp > mid) return false;
18     }
19     return true;
20 }
21 int main(){
22     while(~scanf("%d",&n)){
23         for(int i = 0; i < n; ++i)
24             scanf("%d",d+i);
25         scanf("%d",&k);
26         sort(d,d+n);
27         if(k <= 1){
28             printf("%d
",d[n-1]);
29             continue;
30         }
31         int low = 0,high = d[n-1],ret = 0;
32         while(low <= high){
33             int mid = (low + high)>>1;
34             if(check(mid)){ret = mid;high = mid -1;}
35             else low = mid + 1;
36         }
37         cout<<ret<<endl;
38     }
39     return 0;
40 }
View Code
原文地址:https://www.cnblogs.com/crackpotisback/p/4572291.html