Talented Chef

郭教练是一位才华横溢的厨师,擅长同时烹饪M道菜。为了展示他的烹饪天才给女友,他决定准备N道菜。每道菜包含Ai步骤,郭教练每分钟最多能完成M道菜的一个步骤。本文探讨了如何最高效地完成所有菜品。

Talented Chef
Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu

Description

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

2
3 2
2 2 2
10 6
1 2 3 4 5 6 7 8 9 10

Sample Output

3
10


#include<stdio.h>
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
	int t,n,m,k;
	scanf("%d",&t);
	int maxn,sum,ans;
	while(t--){
		scanf("%d%d",&n,&m);
		maxn=0;
		sum=0;
		ans=0;
		for(int i=0;i<n;i++){
			scanf("%d",&k);
			sum+=k;
			maxn=max(maxn,k);
		}
		if(sum%m)	ans=sum/m+1;
		else	ans=sum/m;
		ans=max(ans,maxn);
		printf("%d\n",ans);
	}
	return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

黎轩栀海

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值