The 11th Zhejiang Provincial Collegiate Programming Contest---Talented Chef

来源:互联网 发布:软件水平考试安排 编辑:程序博客网 时间:2024/04/28 07:00

Talented Chef

Time Limit: 2 Seconds      Memory Limit: 65536 KB

As we all know, Coach Gao is a talented chef, because he is able to cook M dishes in the same time. Tonight he is going to have a hearty dinner with his girlfriend at his home. Of course, Coach Gao is going to cook all dishes himself, in order to show off his genius cooking skill to his girlfriend.

To make full use of his genius in cooking, Coach Gao decides to prepare N dishes for the dinner. The i-th dish contains Ai steps. The steps of a dish should be finished sequentially. In each minute of the cooking, Coach Gao can choose at most M different dishes and finish one step for each dish chosen.

Coach Gao wants to know the least time he needs to prepare the dinner.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

The first line contains two integers N and M (1 <= NM <= 40000). The second line contains N integers Ai (1 <= Ai <= 40000).

Output

For each test case, output the least time (in minute) to finish all dishes.

Sample Input

23 22 2 210 61 2 3 4 5 6 7 8 9 10

Sample Output

310

思路:步骤数最大 和 步骤总和 / m  比较,取最大值,因为一次一个菜只能完成一个步骤。


代码:

#include <stdio.h>int main(){int t;scanf("%d", &t);while (t--){int n, m;scanf("%d%d", &n, &m);int sum = 0;int max = -1;for (int i = 0; i < n; i++){int one;scanf("%d", &one);sum += one;if (one > max)max = one;}int ave;if (sum%m == 0)ave = sum / m;elseave = sum / m + 1;if (ave>max)printf("%d\n", ave);elseprintf("%d\n", max);}return 0;}




0 0