atcoder#ABC131F. [ABC131F] Must Be Rectangular!

[ABC131F] Must Be Rectangular!

Score : 600600 points

Problem Statement

There are NN dots in a two-dimensional plane. The coordinates of the ii-th dot are (xi,yi)(x_i, y_i).

We will repeat the following operation as long as possible:

  • Choose four integers aa, bb, cc, dd (ac,bd)(a \neq c, b \neq d) such that there are dots at exactly three of the positions (a,b)(a, b), (a,d)(a, d), (c,b)(c, b) and (c,d)(c, d), and add a dot at the remaining position.

We can prove that we can only do this operation a finite number of times. Find the maximum number of times we can do the operation.

Constraints

  • 1N1051 \leq N \leq 10^5
  • 1xi,yi1051 \leq x_i, y_i \leq 10^5
  • If iji \neq j, xixjx_i \neq x_j or yiyjy_i \neq y_j.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

x1x_1 y1y_1

::

xNx_N yNy_N

Output

Print the maximum number of times we can do the operation.

3
1 1
5 1
5 5
1

By choosing a=1a = 1, b=1b = 1, c=5c = 5, d=5d = 5, we can add a dot at (1,5)(1, 5). We cannot do the operation any more, so the maximum number of operations is 11.

2
10 10
20 20
0

There are only two dots, so we cannot do the operation at all.

9
1 1
2 1
3 1
4 1
5 1
1 2
1 3
1 4
1 5
16

We can do the operation for all choices of the form a=1a = 1, b=1b = 1, c=ic = i, d=jd = j (2i,j5)(2 \leq i,j \leq 5), and no more. Thus, the maximum number of operations is 1616.