#D2840. Road Planning
Road Planning
Road Planning
Villages were scattered in the Wakamatsu Plain of Aizu. Several settlements are connected by straight roads that allow them to travel to and from each other, and any settlement in the plain can be traced back and forth. Each road has a lengthy maintenance fee, but all the settlements funded the road to maintain it.
At one point, it was decided that all the settlements would be united in one village, and the boundaries surrounding the villages would be drawn. According to national rules, no straight line connecting any of the two settlements that make up a village should pass outside the village (it is permissible to pass on the border). In addition, in Aizu, there must be a road on the border that surrounds the village. Where there is no road on the border, the country will create a new one.
However, the village pays for the maintenance of the road, so the villagers want to keep the boundaries as short as possible. In addition, the villagers decided to minimize the total length of the roads by eliminating roads that were not on the border, while maintaining the ability to travel between all settlements.
Information on the location of the village and the original road is given. Create a program that calculates the minimum total length of the roads when the roads are on the border and all settlements are allowed to come and go. However, the village shall be a point with no size, and the road shall be a line segment with no width.
Input
The input is given in the following format.
VR x1 y1 x2 y2 :: xV yV s1 t1 s2 t2 :: sR tR
The number of settlements V (3 ≤ V ≤ 100) and the number of roads R (2 ≤ R ≤ 1000) are given in the first line.
The following V line gives information on the points that represent the settlement. The two integers xi, yi (-1000 ≤ xi, yi ≤ 1000) given in each row represent the x-coordinate and y-coordinate of the i-th settlement, respectively.
The following R line is given information on the original road. The two integers si, ti (1 ≤ si <ti ≤ V) given in each row indicate that the i-th road connects the si-th and ti-th settlements.
The input satisfies the following conditions.
- If i ≠ j, the coordinates of the i-th and j-th settlements are different.
- In each of the two settlements, there is at most one way to connect them directly.
- Two different roads do not share any points other than the endpoints.
- Three or more settlements are never lined up on the same straight line.
Output
The minimum value of the total length of roads that satisfy the conditions is output as a real number on one line. However, the error must not exceed plus or minus 0.001. If this condition is satisfied, any number of digits after the decimal point may be displayed.
Examples
Input
5 5 0 0 1 1 3 0 3 2 0 2 1 2 2 3 2 4 3 4 1 5
Output
11.4142
Input
7 6 0 2 3 0 2 2 1 0 4 1 2 3 3 5 1 3 2 4 2 3 3 5 3 7 6 7
Output
18.2521
inputFormat
Input
The input is given in the following format.
VR x1 y1 x2 y2 :: xV yV s1 t1 s2 t2 :: sR tR
The number of settlements V (3 ≤ V ≤ 100) and the number of roads R (2 ≤ R ≤ 1000) are given in the first line.
The following V line gives information on the points that represent the settlement. The two integers xi, yi (-1000 ≤ xi, yi ≤ 1000) given in each row represent the x-coordinate and y-coordinate of the i-th settlement, respectively.
The following R line is given information on the original road. The two integers si, ti (1 ≤ si <ti ≤ V) given in each row indicate that the i-th road connects the si-th and ti-th settlements.
The input satisfies the following conditions.
- If i ≠ j, the coordinates of the i-th and j-th settlements are different.
- In each of the two settlements, there is at most one way to connect them directly.
- Two different roads do not share any points other than the endpoints.
- Three or more settlements are never lined up on the same straight line.
outputFormat
Output
The minimum value of the total length of roads that satisfy the conditions is output as a real number on one line. However, the error must not exceed plus or minus 0.001. If this condition is satisfied, any number of digits after the decimal point may be displayed.
Examples
Input
5 5 0 0 1 1 3 0 3 2 0 2 1 2 2 3 2 4 3 4 1 5
Output
11.4142
Input
7 6 0 2 3 0 2 2 1 0 4 1 2 3 3 5 1 3 2 4 2 3 3 5 3 7 6 7
Output
18.2521
样例
5 5
0 0
1 1
3 0
3 2
0 2
1 2
2 3
2 4
3 4
1 5
11.4142