CF325A.Square and Rectangles
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given n rectangles. 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 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 n ( 1<=n<=5 ). Next n lines contain four integers each, describing a single rectangle: x1 , y1 , x2 , y2 ( 0<=x_{1}<x_{2}<=31400,0<=y_{1}<y_{2}<=31400 ) — x1 and x2 are x -coordinates of the left and right edges of the rectangle, and y1 and y2 are y -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