#ABC131F. Must Be Rectangular!
Must Be Rectangular!
题目描述
There are dots in a two-dimensional plane. The coordinates of the -th dot are .
We will repeat the following operation as long as possible:
- Choose four integers , , , such that there are dots at exactly three of the positions , , and , 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.
在一个二维平面上有 个点。第 个点的坐标是 。
我们将尽可能地重复下面的操作:
- 选择四个整数 , , , 。 ,使得 , , 和 中的三个位置上正好有一个点,然后在剩下的位置上加上一个点。
我们可以证明这一操作只能进行有限次。求我们最多可以进行多少次操作。
输入格式
输入内容按以下格式标准输入:
输出格式
打印操作的最大次数。
样例 #1
样例输入 #1
3
1 1
5 1
5 5
样例输出 #1
1
样例 #2
样例输入 #2
2
10 10
20 20
样例输出 #2
0
样例 #3
样例输入 #3
9
1 1
2 1
3 1
4 1
5 1
1 2
1 3
1 4
1 5
样例输出 #3
16
说明
数据规模与约定
- 如果是 、 或 。
- 输入值均为整数。
样例 解释
通过选择 、 、 、 ,我们可以在 处添加一个点。我们无法再进行操作,因此最大操作次数为 。
样例 解释
只有两个点,所以我们根本无法进行操作。
样例 解释
我们可以对形式为 、 、 、 的所有选项进行操作。 ,没有更多。因此,最大操作次数为 。