CF325A.Square and Rectangles

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given nn rectangles. 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 the rectangles form a square. In other words, determine if the set of points inside or on the border of at least one rectangle is precisely equal to the set of points inside or on the border of some square.

输入格式

The first line contains a single integer nn ( 1<=n<=51<=n<=5 ). Next nn lines contain four integers each, describing a single rectangle: x1x_{1} , y1y_{1} , x2x_{2} , y2y_{2} ( 0<=x_{1}<x_{2}<=31400,0<=y_{1}<y_{2}<=31400 ) — x1x_{1} and x2x_{2} are xx -coordinates of the left and right edges of the rectangle, and y1y_{1} and y2y_{2} are yy -coordinates of the bottom and top edges of the rectangle.

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

输出格式

In a single line print "YES", if the given rectangles form a square, or "NO" otherwise.

输入输出样例

  • 输入#1

    5
    0 0 2 3
    0 3 3 5
    2 0 5 2
    3 2 5 5
    2 2 3 3
    

    输出#1

    YES
    
  • 输入#2

    4
    0 0 2 3
    0 3 3 5
    2 0 5 2
    3 2 5 5
    

    输出#2

    NO
    
首页