Get the Containers

来源:互联网 发布:nginx lua 变量 编辑:程序博客网 时间:2024/05/29 19:26

Get the Containers  LightOJ - 1076 

A conveyor belt has a number of vessels of different capacities each filled to brim with milk. The milk from conveyor belt is to be filled into 'm' containers. The constraints are:

1.      Whenever milk from a vessel is poured into a container, the milk in the vessel must be completely poured into that container only. That is milk from same vessel cannot be poured into different containers.

2.      The milk from the vessel must be poured into the container in order which they appear in the conveyor belt. That is, you cannot randomly pick up a vessel from the conveyor belt and fill the container.

3.      The ith container must be filled with milk only from those vessels that appear earlier to those that filljth container, for all i < j.

Given the number of containers m, you have to fill the containers with milk from all the vessels, without leaving any milk in the vessel. The containers need not necessarily have same capacity. You are given the liberty to assign any possible capacities to them. Your job is to find out the minimal possible capacity of the container which has maximal capacity.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case contains two integers n (1 ≤ n ≤ 1000), the number of vessels in the conveyor belt and thenm (1 ≤ m ≤ 106), which specifies the number of containers to which you have to transfer the milk. The next line contains the capacityc (1 ≤ c ≤ 106) of each vessel in order which they appear in the conveyor belt. Note that, milk is filled to the brim of any vessel. So the capacity of the vessel is equal to the amount of milk in it.

Output

For each case, print the case number and the desired result. See the samples for exact formatting.

Sample Input

2

5 3

1 2 3 4 5

3 2

4 78 9

Sample Output

Case 1: 6

Case 2: 82

Hint

For the first case, the capacities of the three containers be 6, 4 and 5. So, we can pour milk from the first three vessels to the first container and the rest in other two containers. So, the maximum capacity of the container is 6. Suppose the capacities of the containers be 3, 7 and 5. Then we can also pour the milk, however, the maximum capacity is 7. As we want to find the result, where the maximum capacity is as low as possible; the result is 6.


题意:把n瓶牛奶按输入顺序放入m个瓶子中,m个瓶子容量相等,求这m个瓶子的最小容量。


思路及注意:二分法,二分容量算出当前容量满足的瓶子数和m进行比较来判断左移还是右移。

注意边界。注意n可能小于m。


#include<stdio.h>#include<algorithm>using namespace std;int a[1005];int main(){int t, n, m, k, i, l, r, mid, sum, c,mm;while (~scanf("%d", &t)){k = 1;while (t--){mm = 0;scanf("%d%d", &n, &m);for (i = 0; i < n; i++){scanf("%d", &a[i]);if (a[i] > mm) mm = a[i];}l = 0, r = 1000000000, mid = (l + r) / 2;while (r - l > 1){sum = 0, c = 1;for (i = 0; i < n; i++){sum += a[i];if (sum > mid){c++;sum = a[i];}}if (c <= m) r = mid;else l = mid;mid = (l + r) / 2;}r = max (r, mm);printf("Case %d: %d\n", k++, r);}}return 0;}


原创粉丝点击