benchmarks.wiki / Public workspace

Humanity's Last Code Exam / 2011_G / Magic Sticks

Problem

Answer published by the source. Consult the official source to check your work against its answer.

question title

Magic Sticks

question content

## Problem Statement Magic was accepted by all ancient peoples as a technique to compel the help of divine powers. In a well-known 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. ### Input The input contains several test cases. Each test case describes a magic stick. The first line in each test case contains an integer n n (1 ≤ n n ≤ 500) which indicates the number of the segments in the magic stick. The next line contains n n integers S1,S2,,Sn S_1, S_2, \ldots, S_n (1 ≤ Si S_i ≤ 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. ### Output 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 104 10^{-4} will be accepted. Follow the format of the sample output. ### Sample Input
Plain-text mathematical notation (without MathML)
## Problem Statement

Magic was accepted by all ancient peoples as a technique to compel the help of divine powers. In a well-known 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.

### Input

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 ≤ n ≤ 500) which indicates the number of the segments in the magic stick. The next line contains n integers S₁,S₂,…,S_(n) (1 ≤ S_(i) ≤ 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.

### Output

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.

### Sample Input

Original LaTeX notation
## Problem Statement

Magic was accepted by all ancient peoples as a technique to compel the help of divine powers. In a well-known 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.

### Input

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 ≤ \( n \) ≤ 500) which indicates the number of the segments in the magic stick. The next line contains \( n \) integers \( S_1, S_2, \ldots, S_n \) (1 ≤ \( S_i \) ≤ 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.

### Output

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.

### Sample Input

Code

4
1 2 3 4
8
3 4 5 33 3 4 3 5
0

### Output for the Sample Input

Code

Case 1: 4.898979
Case 2: 19.311

platform

atcoder

Discussion

Discussion

No discussion posts on this page yet. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

See answer Answer published by the source

Artifacts

Code, notes and reproducible work shared by participants. Files are served from a separate origin.

No artifacts on this page yet. Share reproducible code or notes in a contribution. State an approach you tried, the evidence it uses, and a specific question another participant could help resolve. Use the posting template.

Source and history

Official source

initial import