#Lutece0237. The Dandantang game

The Dandantang game

Migrated from Lutece 237 The Dandantang game

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Xiaoming is a boy who enjoys playing computer games, especially some leisure online games, for example, dandantang. His game account is Aria, the name of an animation which be particularly loved by Xiaoming. Xiaoming is very poor, so he doesn’t want to spend money on the game. Therefore, Xiaoming’s daily tasks must be completed in exchange for the game coin, it is boring. The only interesting thing is cooperating with Aleng, a girl in the same sociaty, to fight with the other players in the game. Chat with a girl while playing the boring game is a nice thing , it can make Xiaoming forget the disappointment when he fails in the battle.

Rules of Dandantang are very simple, each player takes action in turn, fires shells towards the enemy. Before firing, player must control two parameters: the direction and the power.

Direction. Each player can adjust the direction of firing, makes the shells to get an initial velocity in this specific direction. The directions are measured by angles, the unit is degree. The angle is base on the horizontal line, The angle above the horizon is positive while under the horizon is negative. According to the location and the type of weapon, the adjustable range of angle may vary.

Power. The velocity is decided by the power, we can assume that for every 11 unit increase in power, we can get 1m/s1m/s increase in velocity. That is, if the firing power is 1515, we can get an initial velocity of 15m/s15m/s.

title

After firing, the shells will be affected by gravity and the wind, but we ignore the effect of the wind and assume the acceleration due to gravity to be 10m/s210m/s^2.Shells will explode when in collision with the obstacles. If the enemy positions in the explosion happened, then it will be hurt by the shells. On one occasion, Xiaoming and Aleng were performing a task. They entered the final battle after 44 rounds. Unfortunately, The other two teammates got disconnected(because of the BUG of the game ), it made the simple task became very difficult. Soon Aleng was killed by the Big Boss, Xiaoming realized that he also unable to withstand any attack by the Big Boss. If he died, Aleng and he would lose the chance to get the reward, he didn’t hope such a thing happen. But nothing is impossible, because his rage was full, the shells was more lethal. As long as the shells can hit the Big Boss, Xiaoming would be able to get rid of it in one round.

After a long period of practice, Xiaming have mastered a unique skill: 6060-degree fixed angle fire. He can hit anywhere in a 6060-degree angle if possible, only need to adjust the power of shells. But this skill has three weaknesses: Obstacle, if the shells hit an obstacle before hit the target, shells will explode immediately.

The adjustable range of the cannon is very limited, can only adjust to an angle between 4545 degrees to 7575 degree with tangent line of current position. In other words, if the location is bad, the angle can’t able to adjust to 6060 degrees, the skill can’t be used.

No matter how much power of the shells, the enemy can’t be hit. For example, the enemy is located on right above Xiaoming.

That is if Xiaoming don’t encounter any of the three cases above, he can hit the target absolutely. Now please help Xiaoming to determine whether xiaoming could use his unique skills, to give the Big Boss the final blow.

Input

The first line of input is an integer CC, which is the number of test case. Each test case is given in the following format.

nn

XxiaomingX_{xiaoming} YxiaomingY_{xiaoming} XbossX_{boss} YbossY_{boss}

M1M_1

x1x_1 y1y_1

x2x_2 y2y_2

……

xM1x_{M_1} yM1y_{M_1}

M2M_2

x1x_1 y1y_1

x2x_2 y2y_2

……

xM2x_{M_2} yM2y_{M_2}

……

MnM_n

x1x_1 y1y_1

x2x_2 y2y_2

……

xMnx_{M_n} yMny_{M_n}

A positive integer nn is the number of the obstacles. XxiaomingX_{xiaoming} and YxiaomingY_{xiaoming} are the values of xx-coordinate and yy-coordinate of the position of Xiaoming, Xboss and Yboss are the values of xx-coordinate and yy-coordinate of the position of the Big Boss. The following is the description of the obstacles, we use polygons to represent the obstacles. the first line of each polygon is an integer mim_i, the number of vertices which make the polygon, the vertices of the polygon are arranged in a counter-clockwise order. You may assume that the polygon is simple, that is, its border never crosses or touches itself. You can believe the data to meet the following conditions: The polygons don’t intersect with each other, Xiaoming and the Big Boss are located on the edge of the polygon and Xiaoming never located on the vertices of the polygons. Xiaoming and the Big Boss always located on different position. C50,n50,mi50C \leq 50, n \leq 50, m_i \leq 50.

Output

For each set of data, the output may be one of the following case: Can’t hit the target.

The shells is fired at a speed of SP(m/s)SP(m/s), and successfully hit the target.

In the first case, Xiaoming can’t use his unique skills, to give the Big Boss the final blow. In the second case, Xiaoming successfully hit the Big Boss. He fires shells at a speed of SP(m/s)SP(m/s), if XxiaomingX_{xiaoming} is less than XbossX_{boss}, SPSP is a positive value else SPSP is a negative value. the result must be accurate to 44 decimal places.

Samples

3
1
0 0 4 0
4
-1 0
-1 -1
5 -1
5 0
2
0 0 4 0
4
-1 0
-1 -1
5 -1
5 0
4
3 2
3 1
5 1
5 2
2
4 2 0 0
4
-1 0
-1 -1
5 -1
5 0
4
3 2
3 1
5 1
5 2
The shells are fired at a speed of 6.7961 (m/s), and successfully hit the target.
Can’t hit the target.
The shells are fired at a speed of -5.9867 (m/s), and successfully hit the target.

Resources

第四届北京邮电大学程序设计竞赛决赛