#P13210. [GCJ 2016 Finals] Radioactive Islands
[GCJ 2016 Finals] Radioactive Islands
题目描述
You are steering a boat from the coordinates to the coordinates . The coordinates are measured in kilometers, and your boat travels at a constant speed of 1 kilometer per hour. You have full control over the path the boat takes. We model the boat as a single point.
There are islands in the area; we model them as single points. The i-th island is at the coordinates (, ).
The area is radioactive, and you constantly receive 1 microsievert per hour of radiation from the general environment, no matter where you are. Moreover, the islands themselves are radioactive, and you constantly receive additional radiation at a rate of microsieverts per hour from the i-th island, where is your current distance (in kilometers) from the i-th island. (Formally: let be your distance from the i-th island as a function of time , and be the total time your journey takes. Then the total radiation received from the i-th island is the definite integral from to of .) You can get as close to an island as you would like, as long as you do not match its exact coordinates.
Find the minimum total radiation dose that you can receive if you plot your course optimally.
输入格式
The first line of the input gives the number of test cases, ; test cases follow. Each test cases consists of two lines. The first line of a test case consists of three values: an integer , and two floating-point numbers and , as described in the statement above. The second line of a test case consists of floating-point numbers ; the i-th of these numbers gives the y coordinate of the i-th island.
All floating-point numbers are specified to exactly two decimal places.
输出格式
For each test case, output one line containing Case #x: y
, where is the test case number (starting from 1) and is the minimum radiation dose (in microsieverts) received while completing the journey.
will be considered correct if it is within an absolute or relative error of of the correct answer. See the FAQ for an explanation of what that means, and what formats of real numbers we accept.
2
1 1.00 -2.00
0.00
2 0.00 0.00
3.00 -3.00
Case #1: 21.806
Case #2: 21.706
提示
Sample Explantion
Here is a diagram of the optimal path for sample case #1. We have enlarged the island to make it more visible, but remember to treat it as a single point.
Limits
- .
- .
- , for all .
- $\mathbf{C}_{\mathbf{i}} \neq \mathbf{C}_{\mathbf{j}}$, for all .
Small dataset (25 Pts, Test Set 1 - Visible)
- Time limit:
12030 seconds. - ;
- .
Large dataset (25 Pts, Test Set 2 - Hidden)
- Time limit:
24060 seconds. - ;
- .