logo AlgoBeat OnlineJudge
登录 注册

#103102. [BZOJ 3102] Sgu512 Friendly Points

内存限制:128 MiB 时间限制:5000 ms 标准输入输出
题目类型:传统 评测方式:文本比较
上传者: 匿名

题目描述

Consider distinct points on a plane.Two points from that set are said to be friends, when there exists a rectangle with sides parallel to coordinate axes thatcontains those two points and doesn't contain any other point from the given set. A rectangle is said to contain a point if the point lies within the rectangle or on its border.

How many pairs of friends are there among the given points?

求这样的点对个数:以两点连线为对角线的矩形内不存在其他点(也不能在边界上)。

输入格式

The first line of the input file contains an integer .
The next n lines contain two integers each, the coordinates of the given points. The coordinates don't exceed by absolute value.

输出格式

Output one integer number — the sought number of pairs of friends.

样例

样例输入 #1

5
0 0
0 2
2 0
2 2
1 1

样例输出 #1

8

数据范围与提示

对于 的数据,