Infinite House of Pancakes(贪心)

Problem

At the Infinite House of Pancakes, there are only finitely many pancakes, but there are infinitely many diners who would be willing to eat them! When the restaurant opens for breakfast, among the infinitely many diners, exactlyDhave non-empty plates; theith of these hasPipancakes on his or her plate. Everyone else has an empty plate.Normally, every minute, every diner with a non-empty plate will eat one pancake from his or her plate. However, some minutes may bespecial. In a special minute, the head server asks for the diners’ attention, chooses a diner with a non-empty plate, and carefully lifts some number of pancakes off of that diner’s plate and moves those pancakes onto one other diner’s (empty or non-empty) plate. No diners eat during a special minute, because it would be rude.You are the head server on duty this morning, and it is your job to decide which minutes, if any, will be special, and which pancakes will move where. That is, every minute, you can decide to either do nothing and let the diners eat, or declare a special minute and interrupt the diners to make a single movement of one or more pancakes, as described above.Breakfast ends when there are no more pancakes left to eat. How quickly can you make that happen?

Input

The first line of the input gives the number of test cases,T.Ttest cases follow. Each consists of one line withD, the number of diners with non-empty plates, followed by another line withDspace-separated integers representing the numbers of pancakes on those diners’ plates.

Output

For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the smallest number of minutes needed to finish the breakfast.

Limits

1 ≤T≤ 100.

Small dataset

1 ≤D≤ 6.1 ≤Pi≤ 9.

Large dataset

1 ≤D≤ 1000.1 ≤Pi≤ 1000.

Sample

InputOutput

31341 2 1 214Case #1: 3Case #2: 2Case #3: 3

In Case #1, one diner starts with 3 pancakes and everyone else’s plate is empty. One optimal strategy is:Minute 1: Do nothing. The diner will eat one pancake.Minute 2 (special): Interrupt and move one pancake from that diner’s stack onto another diner’s empty plate. (Remember that there are always infinitely many diners with empty plates available, no matter how many diners start off with pancakes.) No pancakes are eaten during an interruption.Minute 3: Do nothing. Each of those two diners will eat one of the last two remaining pancakes.In Case #2, it is optimal to let the diners eat for 2 minutes, with no interruptions, during which time they will finish all the pancakes.In Case #3, one diner starts with 4 pancakes and everyone else’s plate is empty. It is optimal to use the first minute as a special minute to move two pancakes from the diner’s plate to another diner’s empty plate, and then do nothing and let the diners eat for the second and third minutes.

在有很多人,每个人手中都有一个盘子,n个人的盘子中有食物,给出n个盘子中的食物份数,两个操作

1,将盘子中的食物分给其他人,任意

2,盘中有食物的人都吃掉一份食物

每一天可以选择其中一个操作,问最快的时间要吃完所有的食物的时间。

因为人数只有1000,食物最多也是1000,也已枚举将食物分好后,盘中食物最多的为j(1 <= j <= max1 )这样可以计算出需要的时间,找出最小的。

因为跑数据的原因,,竟然错过了提交时间,,,,,

#include <cstdio>#include <cstring>#include <algorithm>using namespace std ;int a[1200] ;int main() {int t , step = 0 ;int n , i , j , max1 , min1 , sum ;freopen("1.in","r",stdin) ;freopen("2.out","w",stdout) ;scanf("%d", &t) ;while( t– ) {scanf("%d", &n) ;for(i = 0 ; i < n ; i++) {scanf("%d", &a[i]) ;max1 = max(max1,a[i]) ;}min1 = max1 ;for(i = 1 ; i <= max1 ; i++) {sum = i ;for(j = 0 ; j < n ; j++) {if( a[j] > i ) {if( a[j]%i == 0 )sum += (a[j]/i-1) ;elsesum += (a[j]/i) ;}}min1 = min(min1,sum) ;}printf("Case #%d: %d\n", ++step, min1) ;}return 0 ;}

有的旅行时为了寻找逝去的年华,重温青春的惆怅。

Infinite House of Pancakes(贪心)

相关文章:

你感兴趣的文章:

标签云: