A12696 | Tokitsukaze and Strange Rectangle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ points on the plane, the $i$ -th of which is at $(x_i, y_i)$ . Tokitsukaze wants to draw a strange rectangular area and pick all the points in the area.
The strange area is enclosed by three lines, $x = l$ , $y = a$ and $x = r$ , as its left side, its bottom side and its right side respectively, where $l$ , $r$ and $a$ can be any real numbers satisfying that $l < r$ . The upper side of the area is boundless, which you can regard as a line parallel to the $x$ -axis at infinity. The following figure shows a strange rectangular area.
A point $(x_i, y_i)$ is in the strange rectangular area if and only if $l < x_i < r$ and $y_i > a$ . For example, in the above figure, $p_1$ is in the area while $p_2$ is not.
Tokitsukaze wants to know how many different non-empty sets she can obtain by picking all the points in a strange rectangular area, where we think two sets are different if there exists at least one point in one set of them but not in the other.
The strange area is enclosed by three lines, $x = l$ , $y = a$ and $x = r$ , as its left side, its bottom side and its right side respectively, where $l$ , $r$ and $a$ can be any real numbers satisfying that $l < r$ . The upper side of the area is boundless, which you can regard as a line parallel to the $x$ -axis at infinity. The following figure shows a strange rectangular area.
A point $(x_i, y_i)$ is in the strange rectangular area if and only if $l < x_i < r$ and $y_i > a$ . For example, in the above figure, $p_1$ is in the area while $p_2$ is not.
Tokitsukaze wants to know how many different non-empty sets she can obtain by picking all the points in a strange rectangular area, where we think two sets are different if there exists at least one point in one set of them but not in the other.
输入格式
The first line contains a single integer $n$ ( $1 \leq n \leq 2 \times 10^5$ ) — the number of points on the plane.
The $i$ -th of the next $n$ lines contains two integers $x_i$ , $y_i$ ( $1 \leq x_i, y_i \leq 10^9$ ) — the coordinates of the $i$ -th point.
All points are distinct.
The $i$ -th of the next $n$ lines contains two integers $x_i$ , $y_i$ ( $1 \leq x_i, y_i \leq 10^9$ ) — the coordinates of the $i$ -th point.
All points are distinct.
输出格式
Print a single integer — the number of different non-empty sets of points she can obtain.
输入输出样例
输入 #1
3 1 1 1 2 1 3
输出 #1
3
输入 #2
3 1 1 2 1 3 1
输出 #2
6
输入 #3
4 2 1 2 2 3 1 3 2
输出 #3
6
For the first example, there is exactly one set having $k$ points for $k = 1, 2, 3$ , so the total number is $3$ .
For the second example, the numbers of sets having $k$ points for $k = 1, 2, 3$ are $3$ , $2$ , $1$ respectively, and their sum is $6$ .
For the third example, as the following figure shows, there are
- $2$ sets having one point;
- $3$ sets having two points;
- $1$ set having four points.
Therefore, the number of different non-empty sets in this example is $2 + 3 + 0 + 1 = 6$ .

For the second example, the numbers of sets having $k$ points for $k = 1, 2, 3$ are $3$ , $2$ , $1$ respectively, and their sum is $6$ .
For the third example, as the following figure shows, there are
- $2$ sets having one point;
- $3$ sets having two points;
- $1$ set having four points.
Therefore, the number of different non-empty sets in this example is $2 + 3 + 0 + 1 = 6$ .

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted