题目链接:点这里
题目
George took sticks of the same length and cut them randomly until all parts became at most 50 units long. Now he wants to return sticks to the original state, but he forgot how many sticks he had originally and how long they were originally. Please help him and design a program which computes the smallest possible original length of those sticks. All lengths expressed in units are integers greater than zero.
Input
The input contains blocks of 2 lines. The first line contains the number of sticks parts after cutting, there are at most 64 sticks. The second line contains the lengths of those parts separated by the space. The last line of the file contains zero.
Output
The output should contains the smal
lest possible length of original sticks, one per line.
Sample Input
9
5 2 1 5 2 1 5 2 1
4
1 2 3 4
0
Sample Output
6
5
题意:
给你一堆长度的棍子,他们是由一些长度相同的棍子切割而来,求最初的最短棍子长度
思路:
棍子长度最小是题目中给的最初的那个,最长是题目中所有的棍子长度的总和. 因此暴力枚举可能的棍子长度,对于每个棍子长度进行搜索,判断能否切割成题目所给出的棍子长度
代码:
1 |
|