atcoder#ARC076B. [ABC065D] Built?
[ABC065D] Built?
Score : points
Problem Statement
There are towns on a plane. The -th town is located at the coordinates . There may be more than one town at the same coordinates.
You can build a road between two towns at coordinates and for a cost of yen (the currency of Japan). It is not possible to build other types of roads.
Your objective is to build roads so that it will be possible to travel between every pair of towns by traversing roads. At least how much money is necessary to achieve this?
Constraints
- All input values are integers.
Input
Input is given from Standard Input in the following format:
:
Output
Print the minimum necessary amount of money in order to build roads so that it will be possible to travel between every pair of towns by traversing roads.
3
1 5
3 9
7 8
3
Build a road between Towns and , and another between Towns and . The total cost is yen.
6
8 3
4 9
12 19
18 1
13 5
7 6
8