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.
InputThere 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 <= N, M <= 40000). The second line contains N integers Ai (1 <= Ai <= 40000).
OutputFor each test case, output the least time (in minute) to finish all dishes.
Sample Input2 3 2 2 2 2 10 6 1 2 3 4 5 6 7 8 9 10Sample Output
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
int ca;
scanf("%d",&ca);
while(ca--)
{
int n,m,a,mm=-1;
long long sum=0;
scanf("%d%d",&n,&m);
for(int i=0;i<n;i++)
{
scanf("%d",&a);
sum+=a;
mm=max(mm,a);
}
long long ans=sum/m;
if(sum%m)
ans++; //mm*m>sum
if(ans<mm) //如果ans<最大输入值
ans=mm;
//如果
printf("%lld\n",ans);
}
return 0;
}
本文解析了一道关于高效烹饪多道菜品的问题,通过算法确定完成所有菜品所需的最短时间。问题涉及了如何合理分配烹饪资源以达到最优解。
4138

被折叠的 条评论
为什么被折叠?



