Pro.ID10078 TitleTable Legs Title链接http://10.20.2.8/oj/exercise/problem?problem_id=10078 AC0 Submit0 Ratio- 时间&空间限制描述A table with four legs may rock, even on a flat surface, if its legs are not all the same length. Interestingly, regardless of how many legs have differing lengths, it is always possible to saw an amount from some legs so as to make the table sit level on a flat surface without rocking. 输入Input consists of data for a number of tables. For each table, a line will give an integer t, between 3 and 50, indicating the number of legs on the table. t subsequent lines will give, in order around the table's circumference, the lengths of the legs in millimetres. Each leg is perpendicular to the table top. A line containing 0 follows the data for the last table. 输出Description A table with four legs may rock, even on a flat surface, if its legs are not all the same length. Interestingly, regardless of how many legs have differing lengths, it is always possible to saw an amount from some legs so as to make the table sit level on a flat surface without rocking. Input Input consists of data for a number of tables. For each table, a line will give an integer t, between 3 and 50, indicating the number of legs on the table. t subsequent lines will give, in order around the table's circumference, the lengths of the legs in millimetres. Each leg is perpendicular to the table top. A line containing 0 follows the data for the last table. Output Pick a strategy that cuts the least total length from all legs and print this amount as an integer number. Print a blank line between tables. Sample Input 3
2000
3000
4000
4
2000
2000
1999
2001
5
2000
2000
1999
2001
1999
0 Sample Output 3000
4
1 Source 样例输入3
2000
3000
4000
4
2000
2000
1999
2001
5
2000
2000
1999
2001
1999
0 样例输出3000
4
1 作者 |