#P13335. [GCJ 2012 Finals] Twirling Towards Freedom
[GCJ 2012 Finals] Twirling Towards Freedom
题目背景
"I say we must move forward, not backward; upward, not forward;
and always twirling, twirling, twirling towards freedom!"
— Former U.S. Presidential nominee Kodos.
题目描述
After hearing this inspirational quote from America's first presidential nominee from the planet Rigel VII, you have decided that you too would like to twirl (rotate) towards freedom. For the purposes of this problem, you can think of "freedom" as being as far away from your starting location as possible.
The galaxy is a two-dimensional plane. Your space ship starts at the origin, position . There are stars in the galaxy. Every minute, you can choose a star and rotate your space ship 90 degrees clockwise around the star. You may also choose to stay where you are.
How far away can you move from the origin after minutes?
The image illustrates the first 3 rotations for a possible path in sample case 1. Note that this path is not necessarily a part of any optimal solution.
输入格式
The first line of the input gives the number of test cases, . test cases follow, beginning with two lines containing integers and . The next lines each contain two integers, and , representing the locations of stars.
输出格式
For each test case, output one line containing "Case #: ", where is the case number (starting from 1) and is the distance from the origin to the optimal final position. Answers with absolute or relative error no larger than will be accepted.
3
4
1
-2 4
1 -2
4 1
0 2
1
4
-5 0
2
5
-1 1
-2 2
Case #1: 6.3245553203
Case #2: 10.0000000000
Case #3: 6.3245553203
提示
Limits
- No two stars will be at the same location.
- There may be a star at the origin.
Test set 1 (10 Pts, Visible Verdict)
- Time limit:
303 seconds.
Test set 2 (39 Pts, Hidden Verdict)
- Time limit:
606 seconds.