A1125. Chain the Ropes

Given some segments of rope, you are supposed to chain them into one rope. Each time you may only fold two segments into loops and chain them into one piece, as shown by the figure. The resulting chain will be treated as another segment of rope and can be folded again. After each chaining, the lengths of the original two segments will be halved.

Your job is to make the longest possible rope out of N given segments.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (2 <= N <= 104). Then N positive integer lengths of the segments are given in the next line, separated by spaces. All the integers are no more than 104.

Output Specification:

For each case, print in a line the length of the longest possible rope that can be made by the given segments. The result must be rounded to the nearest integer that is no greater than the maximum length.

Sample Input:

8
10 15 12 3 4 13 1 15

Sample Output:

14

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 using namespace std;
 5 double rope[100000];
 6 int N;
 7 int main(){
 8     scanf("%d", &N);
 9     for(int i = 0; i < N; i++){
10         scanf("%lf", &rope[i]);
11     }
12     sort(rope, rope + N);
13     double ans = rope[0];
14     for(int i = 0; i < N; i++){
15         ans += rope[i];
16         ans = ans / 2.0;
17     }
18     int prt = ans;
19     printf("%d", prt);
20     cin >> N;
21     return 0;
22 }
View Code

题意: 两段绳子可以合并成一段,但它们一合并,新绳子的长度就会变为原来两绳之长的和的一半,求能得到的最长的绳子。显然越早合并的绳子被1/2的次数就越多,所以要让越长的绳子尽量最后合并。

原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8583083.html