#P16984. [NWERC 2018] Access Points

[NWERC 2018] Access Points

Problem Description

A well-known programming contest is considering a new way to position its teams. For the contest all nn teams have to be assigned some position (x,y)(x,y) in an infinitely-large gym hall. To keep a good overview of the teams the following strategy is chosen:

All teams have been assigned a unique integer ID in the range [1,n][1,n]. Any two teams with IDs ii and jj, where i<ji<j, must be placed at positions (xi,yi)(x_i,y_i), (xj,yj)(x_j,y_j), such that xixjx_i \le x_j and yiyjy_i \le y_j.

Unfortunately, someone already assigned the fixed internet access point for each team. The access points are quite big and only have one port, so access points for different teams are located at different positions. Every team must be connected to its designated access point by a direct UTP cable. The cost of a UTP cable of length \ell is 2\ell^2.

Find a placement for all teams, such that their respective order along both axes is maintained and the total cost of the required UTP cables is minimised. As the judges are not too worried about privacy, they are fine with two or more teams being placed at the exact same location or being arbitrarily close together. See the figure for an example.

:::align{center}

:::

Input Format

The input consists of:

  • One line with one integer nn (1n1051 \le n \le 10^5), the number of teams.
  • nn lines, the iith of which contains two integers si,tis_i,t_i (1si,ti1061 \le s_i,t_i \le 10^6), the location of the internet access point of team ii.

No two access points are at the same position.

Output Format

Output the minimum total cost of all UTP cables required to connect the teams to their access points in an optimal legal layout.

Your answer should have an absolute or relative error of at most 10610^{-6}.

6
4 1
2 4
3 2
8 3
5 6
2 5
22.5
6
11 6
23 7
24 11
24 32
27 38
42 42
0