A12681 | Count The Rectangles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ segments drawn on a plane; the $i$ -th segment connects two points ( $x_{i, 1}$ , $y_{i, 1}$ ) and ( $x_{i, 2}$ , $y_{i, 2}$ ). Each segment is non-degenerate, and is either horizontal or vertical — formally, for every $i \in [1, n]$ either $x_{i, 1} = x_{i, 2}$ or $y_{i, 1} = y_{i, 2}$ (but only one of these conditions holds). Only segments of different types may intersect: no pair of horizontal segments shares any common points, and no pair of vertical segments shares any common points.
We say that four segments having indices $h_1$ , $h_2$ , $v_1$ and $v_2$ such that $h_1 < h_2$ and $v_1 < v_2$ form a rectangle if the following conditions hold:
- segments $h_1$ and $h_2$ are horizontal;
- segments $v_1$ and $v_2$ are vertical;
- segment $h_1$ intersects with segment $v_1$ ;
- segment $h_2$ intersects with segment $v_1$ ;
- segment $h_1$ intersects with segment $v_2$ ;
- segment $h_2$ intersects with segment $v_2$ .
Please calculate the number of ways to choose four segments so they form a rectangle. Note that the conditions $h_1 < h_2$ and $v_1 < v_2$ should hold.
We say that four segments having indices $h_1$ , $h_2$ , $v_1$ and $v_2$ such that $h_1 < h_2$ and $v_1 < v_2$ form a rectangle if the following conditions hold:
- segments $h_1$ and $h_2$ are horizontal;
- segments $v_1$ and $v_2$ are vertical;
- segment $h_1$ intersects with segment $v_1$ ;
- segment $h_2$ intersects with segment $v_1$ ;
- segment $h_1$ intersects with segment $v_2$ ;
- segment $h_2$ intersects with segment $v_2$ .
Please calculate the number of ways to choose four segments so they form a rectangle. Note that the conditions $h_1 < h_2$ and $v_1 < v_2$ should hold.
输入格式
The first line contains one integer $n$ ( $1 \le n \le 5000$ ) — the number of segments.
Then $n$ lines follow. The $i$ -th line contains four integers $x_{i, 1}$ , $y_{i, 1}$ , $x_{i, 2}$ and $y_{i, 2}$ denoting the endpoints of the $i$ -th segment. All coordinates of the endpoints are in the range $[-5000, 5000]$ .
It is guaranteed that each segment is non-degenerate and is either horizontal or vertical. Furthermore, if two segments share a common point, one of these segments is horizontal, and another one is vertical.
Then $n$ lines follow. The $i$ -th line contains four integers $x_{i, 1}$ , $y_{i, 1}$ , $x_{i, 2}$ and $y_{i, 2}$ denoting the endpoints of the $i$ -th segment. All coordinates of the endpoints are in the range $[-5000, 5000]$ .
It is guaranteed that each segment is non-degenerate and is either horizontal or vertical. Furthermore, if two segments share a common point, one of these segments is horizontal, and another one is vertical.
输出格式
Print one integer — the number of ways to choose four segments so they form a rectangle.
输入输出样例
输入 #1
7 -1 4 -1 -2 6 -1 -2 -1 -2 3 6 3 2 -2 2 4 4 -1 4 3 5 3 5 1 5 2 1 2
输出 #1
7
输入 #2
5 1 5 1 0 0 1 5 1 5 4 0 4 4 2 4 0 4 3 4 5
输出 #2
0
The following pictures represent sample cases:
 
 
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted