A11013 | Sofa Thief
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Yet another round on DecoForces is coming! Grandpa Maks wanted to participate in it but someone has stolen his precious sofa! And how can one perform well with such a major loss?
Fortunately, the thief had left a note for Grandpa Maks. This note got Maks to the sofa storehouse. Still he had no idea which sofa belongs to him as they all looked the same!
The storehouse is represented as matrix $n×m$ . Every sofa takes two neighbouring by some side cells. No cell is covered by more than one sofa. There can be empty cells.
Sofa $A$ is standing to the left of sofa $B$ if there exist two such cells $a$ and $b$ that $x_{a}<x_{b}$ , $a$ is covered by $A$ and $b$ is covered by $B$ . Sofa $A$ is standing to the top of sofa $B$ if there exist two such cells $a$ and $b$ that $y_{a}<y_{b}$ , $a$ is covered by $A$ and $b$ is covered by $B$ . Right and bottom conditions are declared the same way.
Note that in all conditions $A≠B$ . Also some sofa $A$ can be both to the top of another sofa $B$ and to the bottom of it. The same is for left and right conditions.
The note also stated that there are $cnt_{l}$ sofas to the left of Grandpa Maks's sofa, $cnt_{r}$ — to the right, $cnt_{t}$ — to the top and $cnt_{b}$ — to the bottom.
Grandpa Maks asks you to help him to identify his sofa. It is guaranteed that there is no more than one sofa of given conditions.
Output the number of Grandpa Maks's sofa. If there is no such sofa that all the conditions are met for it then output -1.
Fortunately, the thief had left a note for Grandpa Maks. This note got Maks to the sofa storehouse. Still he had no idea which sofa belongs to him as they all looked the same!
The storehouse is represented as matrix $n×m$ . Every sofa takes two neighbouring by some side cells. No cell is covered by more than one sofa. There can be empty cells.
Sofa $A$ is standing to the left of sofa $B$ if there exist two such cells $a$ and $b$ that $x_{a}<x_{b}$ , $a$ is covered by $A$ and $b$ is covered by $B$ . Sofa $A$ is standing to the top of sofa $B$ if there exist two such cells $a$ and $b$ that $y_{a}<y_{b}$ , $a$ is covered by $A$ and $b$ is covered by $B$ . Right and bottom conditions are declared the same way.
Note that in all conditions $A≠B$ . Also some sofa $A$ can be both to the top of another sofa $B$ and to the bottom of it. The same is for left and right conditions.
The note also stated that there are $cnt_{l}$ sofas to the left of Grandpa Maks's sofa, $cnt_{r}$ — to the right, $cnt_{t}$ — to the top and $cnt_{b}$ — to the bottom.
Grandpa Maks asks you to help him to identify his sofa. It is guaranteed that there is no more than one sofa of given conditions.
Output the number of Grandpa Maks's sofa. If there is no such sofa that all the conditions are met for it then output -1.
输入格式
The first line contains one integer number $d$ ( $1<=d<=10^{5}$ ) — the number of sofas in the storehouse.
The second line contains two integer numbers $n$ , $m$ ( $1<=n,m<=10^{5}$ ) — the size of the storehouse.
Next $d$ lines contains four integer numbers $x_{1}$ , $y_{1}$ , $x_{2}$ , $y_{2}$ ( $1<=x_{1},x_{2}<=n$ , $1<=y_{1},y_{2}<=m$ ) — coordinates of the $i$ -th sofa. It is guaranteed that cells ( $x_{1},y_{1}$ ) and ( $x_{2},y_{2}$ ) have common side, ( $x_{1},y_{1}$ ) $≠$ ( $x_{2},y_{2}$ ) and no cell is covered by more than one sofa.
The last line contains four integer numbers $cnt_{l}$ , $cnt_{r}$ , $cnt_{t}$ , $cnt_{b}$ ( $0<=cnt_{l},cnt_{r},cnt_{t},cnt_{b}<=d-1$ ).
The second line contains two integer numbers $n$ , $m$ ( $1<=n,m<=10^{5}$ ) — the size of the storehouse.
Next $d$ lines contains four integer numbers $x_{1}$ , $y_{1}$ , $x_{2}$ , $y_{2}$ ( $1<=x_{1},x_{2}<=n$ , $1<=y_{1},y_{2}<=m$ ) — coordinates of the $i$ -th sofa. It is guaranteed that cells ( $x_{1},y_{1}$ ) and ( $x_{2},y_{2}$ ) have common side, ( $x_{1},y_{1}$ ) $≠$ ( $x_{2},y_{2}$ ) and no cell is covered by more than one sofa.
The last line contains four integer numbers $cnt_{l}$ , $cnt_{r}$ , $cnt_{t}$ , $cnt_{b}$ ( $0<=cnt_{l},cnt_{r},cnt_{t},cnt_{b}<=d-1$ ).
输出格式
Print the number of the sofa for which all the conditions are met. Sofas are numbered $1$ through $d$ as given in input. If there is no such sofa then print -1.
输入输出样例
输入 #1
2 3 2 3 1 3 2 1 2 2 2 1 0 0 1
输出 #1
1
输入 #2
3 10 10 1 2 1 1 5 5 6 5 6 4 5 4 2 1 2 0
输出 #2
2
输入 #3
2 2 2 2 1 1 1 1 2 2 2 1 0 0 0
输出 #3
-1
Let's consider the second example.
- The first sofa has $0$ to its left, $2$ sofas to its right ( $(1,1)$ is to the left of both $(5,5)$ and $(5,4)$ ), $0$ to its top and $2$ to its bottom (both $2$ nd and $3$ rd sofas are below).
- The second sofa has $cnt_{l}=2$ , $cnt_{r}=1$ , $cnt_{t}=2$ and $cnt_{b}=0$ .
- The third sofa has $cnt_{l}=2$ , $cnt_{r}=1$ , $cnt_{t}=1$ and $cnt_{b}=1$ .
So the second one corresponds to the given conditions.
In the third example
- The first sofa has $cnt_{l}=1$ , $cnt_{r}=1$ , $cnt_{t}=0$ and $cnt_{b}=1$ .
- The second sofa has $cnt_{l}=1$ , $cnt_{r}=1$ , $cnt_{t}=1$ and $cnt_{b}=0$ .
And there is no sofa with the set $(1,0,0,0)$ so the answer is -1.
- The first sofa has $0$ to its left, $2$ sofas to its right ( $(1,1)$ is to the left of both $(5,5)$ and $(5,4)$ ), $0$ to its top and $2$ to its bottom (both $2$ nd and $3$ rd sofas are below).
- The second sofa has $cnt_{l}=2$ , $cnt_{r}=1$ , $cnt_{t}=2$ and $cnt_{b}=0$ .
- The third sofa has $cnt_{l}=2$ , $cnt_{r}=1$ , $cnt_{t}=1$ and $cnt_{b}=1$ .
So the second one corresponds to the given conditions.
In the third example
- The first sofa has $cnt_{l}=1$ , $cnt_{r}=1$ , $cnt_{t}=0$ and $cnt_{b}=1$ .
- The second sofa has $cnt_{l}=1$ , $cnt_{r}=1$ , $cnt_{t}=1$ and $cnt_{b}=0$ .
And there is no sofa with the set $(1,0,0,0)$ so the answer is -1.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted