2871.Rooks and Rectangles

Time Limit: 1s Memory Limit: 256MB

Polycarpus has a chessboard of size n \times m, where k rooks are placed. Polycarpus hasn't yet invented the rules of the game he will play. However, he has already allocated q rectangular areas of special strategic importance on the board, they must be protected well. According to Polycarpus, a rectangular area of the board is well protected if all its vacant squares can be beaten by the rooks that stand on this area. The rooks on the rest of the board do not affect the area's defense. The position of the rooks is fixed and cannot be changed. We remind you that the the rook beats the squares located on the same vertical or horizontal line with it, if there are no other pieces between the square and the rook. Help Polycarpus determine whether all strategically important areas are protected.

Input Format(From the terminal/stdin)

The first line contains four integers n, m, k and q (1 \le n,m \le 100000, 1 \le k,q \le 200000) - the sizes of the board, the number of rooks and the number of strategically important sites. We will consider that the cells of the board are numbered by integers from 1 to n horizontally and from 1 to m vertically. Next k lines contain pairs of integers "x y", describing the positions of the rooks (1 \le x \le n, 1 \le y \le m). It is guaranteed that all the rooks are in distinct squares. Next q lines describe the strategically important areas as groups of four integers "x1 y1 x2 y2" (1 \le x1 \le x2 \le n, 1 \le y1 \le y2 \le m). The corresponding rectangle area consists of cells (x,y), for which x1 \le x \le x2, y1 \le y \le y2. Strategically important areas can intersect of coincide.

Output Format(To the terminal/stdout)

Print q lines. For each strategically important site print "YES" if it is well defended and "NO" otherwise.

Sample Input

Copy
4 3 3 3
1 1
3 2
2 3
2 3 2 3
2 1 3 3
1 2 2 3
 · · · \n
 · \n
 · \n
 · \n
 · · · \n
 · · · \n
 · · · \n

Sample Output

Copy
YES
YES
NO
   \n
   \n
  \n

Hints

Picture to the sample: 2871_1.png For the last area the answer is "NO", because cell (1,2) cannot be hit by a rook.

Submit

请先 登录

© 2025 FAQs