CF335D.Rectangles and Square

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given nn rectangles, labeled 1 through nn . The corners of rectangles have integer coordinates and their edges are parallel to the OxOx and OyOy 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.

输入格式

First line contains a single integer nn ( 1<=n<=1051<=n<=10^{5} ) — the number of rectangles. Each of the next nn lines contains a description of a rectangle, with the ii -th such line describing the rectangle labeled ii . Each rectangle description consists of four integers: x1x_{1} , y1y_{1} , x2x_{2} , y2y_{2} — coordinates of the bottom left and the top right corners ( 0<=x_{1}<x_{2}<=3000 , 0<=y_{1}<y_{2}<=3000 ).

No two rectangles overlap (that is, there are no points that belong to the interior of more than one rectangle).

输出格式

If such a subset exists, print "YES" (without quotes) on the first line of the output file, followed by kk , the number of rectangles in the subset. On the second line print kk 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).

输入输出样例

  • 输入#1

    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
    

    输出#1

    YES 5
    5 6 7 8 9
    
  • 输入#2

    4
    0 0 1 9
    1 0 9 1
    1 8 9 9
    8 1 9 8
    

    输出#2

    NO
    

说明/提示

The first test case looks as follows:

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:

首页