Talented Chef
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 <= N, M <= 40000). The second line contains N integers Ai (1 <= Ai <= 40000).
Output 【Talented Chef】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#include using namespace std; int main() { // freopen("a.txt","r",stdin); int n, t, i, max, x, m; cin >> t; while(t --) { cin >> n >> m; int sum = 0; max = 0; for(i = 0; i < n; i ++) { cin >> x; sum += x; if(x > max) max = x; } if(sum%m==0) sum/=m; else sum=sum/m+1; if(sum < max) sum = max; cout << sum << endl; } return 0; }
推荐阅读
- parallels|parallels desktop 解决网络初始化失败问题
- Android|Android install 多个设备时指定设备
- oracle|oracle java jdk install
- JavaScript|JavaScript — call()和apply()、Date对象、Math、包装类、字符串的方法
- c语言|一文搞懂栈(stack)、堆(heap)、单片机裸机内存管理malloc
- 2018-11-13每日一词|2018-11-13每日一词 42 | parallel - 草稿
- 201708期+283号+薛泽明Allen+Day34
- pyinstaller解决闪退问题
- Python|Python TypeError: 'module' object is not callable 原因分析
- 并发,并行,阻塞,非阻塞,异步,同步