Hide

Problem C
Access Points

A well-known programming contest is considering a new way to position its teams. For the contest all $n$ teams have to be assigned some position $(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]$. Any two teams with IDs $i$ and $j$, where $i<j$, must be placed at positions $(x_ i,y_ i)$, $(x_ j,y_ j)$, such that $x_ i \le x_ j$ and $y_ 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 $\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 Figure 1 for an example.

\includegraphics[width=0.63\textwidth ]{figure}
Figure 1: Illustration of an optimal placement for Sample Input 1. Team placement (boxes), access points (circles), and required UTP cables (dashed).

Input

The input consists of:

  • One line with one integer $n$ ($1 \le n \le 10^5$), the number of teams.

  • $n$ lines, the $i$th of which contains two integers $s_ i$, $t_ i$ ($1 \le s_ i,t_ i \le 10^6$), the location of the internet access point of team $i$.

No two access points are at the same position.

Output

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 $10^{-6}$.

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

Please log in to submit a solution to this problem

Log in