zoukankan      html  css  js  c++  java
  • 【POJ 3104】Drying

    Description

    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

    题目大意:

      有N件衣服需要晒,现在有一台烘干机,烘一分钟相当于晒K分钟,但是只能同时烘干一件衣服,现在给出每件衣服需要晒的时间,求出晒干所有衣服所需要的最少时间。

    分析:

      二分答案,判断可行性。

      假如二分到的答案为mid,那么需要晒的时间小于等于mid的就都拿去晒。

      大于t的,假设该衣服晒a分钟,烘干b分钟,那么需要满足:a + b <= mid, a + bk >= t。

      可以转换成b >= (t - mid) / (k - 1),因为y是整数,所以b最小是b = (t - mid + k - 2) / (k - 1)

      把所有b加起来,小于等于mid则可行。

      PS:judge ()里面的sum不开long long会爆QAQ。

    代码:

     1 #include <cstdio>
     2 
     3 int n, k, i, t[100010];
     4 int left, right, mid;
     5 
     6 bool judge (int lim)
     7 {
     8     long long sum = 0;
     9     for (i = 0; i < n; i++)
    10         if (t[i] > lim) sum += (t[i] - lim + k - 2) / (k - 1);
    11     return sum <= lim;
    12 }
    13 
    14 int main ()
    15 {
    16     right = !scanf ("%d", &n);
    17     for (i = 0; i < n; i++)
    18     {
    19         scanf ("%d", &t[i]);
    20         if (t[i] > right) right = t[i];
    21     }
    22     scanf ("%d", &k);
    23     if (k > 1)
    24     {
    25         for (left = 0; left < right; )
    26         {
    27             mid = left + right >> 1;
    28             if (judge (mid)) right = mid;
    29             else left = mid + 1;
    30         }
    31     }
    32     printf ("%d", right);
    33 }
  • 相关阅读:
    深入理解JavaScript闭包
    冒泡排序
    Objective-C中的self和super
    IOS中UIKit——UIButton的背景图像无法正常显示的原因
    IOS绘图——简单三角形
    NSDateFormatter中时间格式串的含义
    IOS屏幕布局
    IOS学习感想
    WWDC————苹果全球开发者大会
    刚开始学IOS遇到的类和方法
  • 原文地址:https://www.cnblogs.com/lightning34/p/4433148.html
Copyright © 2011-2022 走看看