#D5644. MirrorLabyrinth
MirrorLabyrinth
MirrorLabyrinth
As a proud hero, you are finally about to reach the Demon King. However, in order to reach the throne where the Demon King is, you must clear the final map prepared by the Demon King.
In this map, everything changes like a two-dimensional plan view from the sky. Humans transform into just points on this map. The map is divided into two areas by a straight line. Then, when there is a person in one area, a mirror image of the person is projected at a position in the other area that is line-symmetric with respect to a straight line.
There are multiple buildings in each of the two areas. Even though it is a building, in this map, it is a polygon made by connecting several points, and the inside surrounded by the sides and the top of the side are the inside of the building. Buildings, unlike humans, do not create mirror images in other areas.
When you break into this map, the Demon King's magic will lock you inside one of the buildings. You can only clear the map by moving to one escape point inside the detained building. In addition, you are cursed by the Demon King and restricted in your movements. The limitation is that your location and the location of your mirror image must be inside one of the buildings. As long as you follow this restriction, you are free to move inside the building.
Now, you must clear this map as soon as possible and defeat the Demon King who is destroying the world. Given your initial position, find the shortest path distance to get to the escape point. However, if you cannot move to the escape point, you will not be able to escape from the eternal map and will only decay.
Input
The input consists of multiple datasets. The format of each data set is as follows.
N BUILDING1 ... BUILDINGN SX SY GX GY LX1 LY1 LX2 LY2
All inputs are integer values. Moreover, it may be assumed that all the coordinate information is -10,000 <= x, y <= 10,000.
N (1 <= N <= 100) is the number of buildings. Next, information on N buildings is entered. BUILDINGi is a polygon that is input in the following format.
M X1 Y1 ... XM YM
M (3 <= M <= 50) represents the number of vertices of the polygon. Then M vertices, (Xi, Yi) are input counterclockwise. The line segment connecting the vertices of (Xi, Yi) and (Xi + 1, Yi + 1) is one side of the polygon. However, the first vertex is connected to the M-th vertex. It can be assumed that the three consecutive vertices of a polygon do not line up. In addition, each side of the polygon is input so that it does not touch or intersect with any side other than the adjacent sides. Each polygon does not touch, intersect, or contain other polygons.
After the building information is entered, the start point (SX, SY) and escape point (GX, GY) information is entered. Both the starting point and the escape point are inside the same building. However, please note that the mirror images of the starting point and the escape point do not always exist inside the building. In this case, of course, the map cannot be cleared. The start point and the escape point always exist at different positions.
Finally, the straight line information is input. A straight line is represented by two points (LX1, LY1) and (LX2, LY2) existing on the straight line. These two points are always in different positions. It may be assumed that the straight line does not touch or intersect any building.
The end of the input is given on a line with only one 0.
Output
For each dataset, output the shortest distance from the start point to the escape point. The error in the answer must not exceed 0.00000001 (10-8). Any number of digits after the decimal point may be output as long as the precision conditions are met.
If you can't reach the escape point, print "impossible".
Sample Input
2 3 1 1 twenty two 1 2 3 -1 1 -1 2 -twenty two 1 1 2 2 0 0 0 1 2 Ten 1 1 7 1 7 5 5 5 5 3 6 3 6 2 3 2 3 5 1 5 Ten -1 1 -1 5 -3 5 -3 3 -twenty three -twenty two -5 2 -5 5 -7 5 -7 1 2 4 6 4 0 0 0 1 2 7 -7 0 -5 0 -4 3 -3 0 -Ten -14 -7 4 3 Ten 7 0 7 4 3 1 5 2 0 0 0 1 0
Output for Sample Input
1.4142135623730951 8.0 8.0 impossible impossible
The following figures show the arrangement of each sample. In Figures G-1 and G-2, the red path shows the hero's own path, and the blue path shows the hero's mirror image path. In Figure G-3, it is not possible to reach the escape point from the start point.
Figure G-1: First sample
Figure G-2: Second sample
Figure G-3: Third sample
Example
Input
2 3 1 1 2 2 1 2 3 -1 1 -1 2 -2 2 1 1 2 2 0 0 0 1 2 10 1 1 7 1 7 5 5 5 5 3 6 3 6 2 3 2 3 5 1 5 10 -1 1 -1 5 -3 5 -3 3 -2 3 -2 2 -5 2 -5 5 -7 5 -7 1 2 4 6 4 0 0 0 1 2 7 -7 0 -5 0 -4 3 -3 0 -1 0 -1 4 -7 4 3 1 0 7 0 7 4 3 1 5 2 0 0 0 1 0
Output
1.4142135623730951 8.0 impossible
inputFormat
Input
The input consists of multiple datasets. The format of each data set is as follows.
N BUILDING1 ... BUILDINGN SX SY GX GY LX1 LY1 LX2 LY2
All inputs are integer values. Moreover, it may be assumed that all the coordinate information is -10,000 <= x, y <= 10,000.
N (1 <= N <= 100) is the number of buildings. Next, information on N buildings is entered. BUILDINGi is a polygon that is input in the following format.
M X1 Y1 ... XM YM
M (3 <= M <= 50) represents the number of vertices of the polygon. Then M vertices, (Xi, Yi) are input counterclockwise. The line segment connecting the vertices of (Xi, Yi) and (Xi + 1, Yi + 1) is one side of the polygon. However, the first vertex is connected to the M-th vertex. It can be assumed that the three consecutive vertices of a polygon do not line up. In addition, each side of the polygon is input so that it does not touch or intersect with any side other than the adjacent sides. Each polygon does not touch, intersect, or contain other polygons.
After the building information is entered, the start point (SX, SY) and escape point (GX, GY) information is entered. Both the starting point and the escape point are inside the same building. However, please note that the mirror images of the starting point and the escape point do not always exist inside the building. In this case, of course, the map cannot be cleared. The start point and the escape point always exist at different positions.
Finally, the straight line information is input. A straight line is represented by two points (LX1, LY1) and (LX2, LY2) existing on the straight line. These two points are always in different positions. It may be assumed that the straight line does not touch or intersect any building.
The end of the input is given on a line with only one 0.
outputFormat
Output
For each dataset, output the shortest distance from the start point to the escape point. The error in the answer must not exceed 0.00000001 (10-8). Any number of digits after the decimal point may be output as long as the precision conditions are met.
If you can't reach the escape point, print "impossible".
Sample Input
2 3 1 1 twenty two 1 2 3 -1 1 -1 2 -twenty two 1 1 2 2 0 0 0 1 2 Ten 1 1 7 1 7 5 5 5 5 3 6 3 6 2 3 2 3 5 1 5 Ten -1 1 -1 5 -3 5 -3 3 -twenty three -twenty two -5 2 -5 5 -7 5 -7 1 2 4 6 4 0 0 0 1 2 7 -7 0 -5 0 -4 3 -3 0 -Ten -14 -7 4 3 Ten 7 0 7 4 3 1 5 2 0 0 0 1 0
Output for Sample Input
1.4142135623730951 8.0 8.0 impossible impossible
The following figures show the arrangement of each sample. In Figures G-1 and G-2, the red path shows the hero's own path, and the blue path shows the hero's mirror image path. In Figure G-3, it is not possible to reach the escape point from the start point.
Figure G-1: First sample
Figure G-2: Second sample
Figure G-3: Third sample
Example
Input
2 3 1 1 2 2 1 2 3 -1 1 -1 2 -2 2 1 1 2 2 0 0 0 1 2 10 1 1 7 1 7 5 5 5 5 3 6 3 6 2 3 2 3 5 1 5 10 -1 1 -1 5 -3 5 -3 3 -2 3 -2 2 -5 2 -5 5 -7 5 -7 1 2 4 6 4 0 0 0 1 2 7 -7 0 -5 0 -4 3 -3 0 -1 0 -1 4 -7 4 3 1 0 7 0 7 4 3 1 5 2 0 0 0 1 0
Output
1.4142135623730951 8.0 impossible
样例
2
3
1 1
2 2
1 2
3
-1 1
-1 2
-2 2
1 1 2 2
0 0 0 1
2
10
1 1
7 1
7 5
5 5
5 3
6 3
6 2
3 2
3 5
1 5
10
-1 1
-1 5
-3 5
-3 3
-2 3
-2 2
-5 2
-5 5
-7 5
-7 1
2 4 6 4
0 0 0 1
2
7
-7 0
-5 0
-4 3
-3 0
-1 0
-1 4
-7 4
3
1 0
7 0
7 4
3 1 5 2
0 0 0 1
0
1.4142135623730951
8.0
impossible
</p>