博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【POJ 3104】Drying
阅读量:6586 次
发布时间:2019-06-24

本文共 2632 字,大约阅读时间需要 8 分钟。

 

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 #132 3 95sample input #232 3 65

Sample Output

sample output #13sample output #22

 

题目大意:

  有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 
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 }

 

转载于:https://www.cnblogs.com/lightning34/p/4433148.html

你可能感兴趣的文章
javascript 图标分析工具
查看>>
从结构struct谈到类class(基于C++实现)
查看>>
阿里云负载均衡服务
查看>>
小命令 sysdig
查看>>
IT十八掌作业_java基础第五天_静态代码块、类的继承和接口
查看>>
流程控制-for序列、流程控制-for字典
查看>>
Easy APNs Provider的使用
查看>>
搭建mysql集群
查看>>
Gson工具包使用
查看>>
有一个系统修复处于挂起状态,需要重新启动才能完成该修复
查看>>
Ubuntu上安装bind9
查看>>
访问共享提示“服务器存储空间不足,无法处理此命令。”
查看>>
第七章 虚拟化 虚拟机备份 Veeam backup &Replication
查看>>
路由器与交换机的密码恢复
查看>>
Cisco路由器上的IPSec协议(站点到站点的×××)
查看>>
Linux Python详细安装、升级指南
查看>>
无法修复ie使用代理服务器
查看>>
教你给IDEA安装插件
查看>>
隐蔽可扩展PHP Webshell – Weevely 1.0
查看>>
如何让Yii框架支持多个数据库
查看>>