3520.Rectangles and Square

Time Limit: 1s Memory Limit: 256MB

You are given n rectangles, labeled 1 through n. The corners of rectangles have integer coordinates and their edges are parallel to the Ox and Oy axes. The rectangles may touch each other, but they do not overlap (that is, there are no points that belong to the interior of more than one rectangle).Your task is to determine if there's a non-empty subset of the rectangles that forms a square. That is, determine if there exists a subset of the rectangles and some square for which every point that belongs to the interior or the border of that square belongs to the interior or the border of at least one of the rectangles in the subset, and every point that belongs to the interior or the border of at least one rectangle in the subset belongs to the interior or the border of that square.

Input Format(From the terminal/stdin)

Input First line contains a single integer n (1 \le n \le 105) - the number of rectangles. Each of the next n lines contains a description of a rectangle, with the i-th such line describing the rectangle labeled i. Each rectangle description consists of four integers: x1, y1, x2, y2 - coordinates of the bottom left and the top right corners (0 \le x1 \lt x2 \le 3000, 0 \le y1 \lt y2 \le 3000).No two rectangles overlap (that is, there are no points that belong to the interior of more than one rectangle).

Output Format(To the terminal/stdout)

Output If such a subset exists, print "YES" (without quotes) on the first line of the output file, followed by k, the number of rectangles in the subset. On the second line print k numbers - the labels of rectangles in the subset in any order. If more than one such subset exists, print any one. If no such subset exists, print "NO" (without quotes).

Sample Input 1

Copy
9
0 0 1 9
1 0 9 1
1 8 9 9
8 1 9 8
2 2 3 6
3 2 7 3
2 6 7 7
5 3 7 6
3 3 5 6
 \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n

Sample Output 1

Copy
YES 5
5 6 7 8 9
   · \n
 · · · · \n

Sample Input 2

Copy
4
0 0 1 9
1 0 9 1
1 8 9 9
8 1 9 8
 \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n

Sample Output 2

Copy
NO
  \n

Hints

The first test case looks as follows: 3520_1.png Note that rectangles 6, 8, and 9 form a square as well, and would be an acceptable answer.The second test case looks as follows: 3520_2.png

Submit

请先 登录

© 2025 FAQs