题库练习 Sofa Thief
← 上一题 下一题 →

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.

输入格式

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$ ).

输出格式

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
C++ 编辑器
输入
输出