G. Magic Sticks
의견: 0
Magic was accepted by all ancient peoples as a technique to compel the help of divine powers. In a we\(ll-kn\)own story, one group of sorcerers threw their walking sticks on the floor where they magically appeared to turn into live serpents. In opposition, another person threw his stick on the floor, where it turned into a serpent which then consumed the sorcerers’ serpents! The only magic required for this problem is its solution. You are given a magic stick that has several straight segments, with joints between the segments that allow the stick to be folded. Depending on the segment lengths and how they are folded, the segments of the stick can be arranged to produce a number of polygons. You are to determine the maximum area that could be enclosed by the polygons formed by folding the stick, using each segment in at most one polygon. Segments can touch only at their endpoints. For example, the stick shown below on the left has five segments and four joints. It can be folded to produce a polygon as shown on the right.
The input contains several test cases. Each test case describes a magic stick. The first line in each test case contains an integer \(n\) (\(1 \le n \le 500\)) which indicates the number of the segments in the magic stick. The next line contains \(n\) integers \(S\)1, S2, . . . , S\(n\) (\(1 \le Si \le 1000\)) which indicate the lengths of the segments in the order they appear in the stick. The last test case is followed by a line containing a single zero.
For each case, display its case number followed by the maximum total enclosed area that can be obtained by folding the magic stick at the given points. Answers within an absolute or relative error of \(10^{−}^{4}\) will be accepted. Follow the format of the sample output.
4
1 2 3 4
8
3 4 5 33 3 4 3 5
0
ICPC 2011 World Finals Problem G: Magic Sticks
Case 1: 4.898979
Case 2: 19.311
평가 및 의견
G. Magic Sticks
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
G. Magic Sticks