306334: CF1181E1. A Story of One Country (Easy)

Memory Limit:512 MB Time Limit:4 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A Story of One Country (Easy)

题目描述

This problem differs from the next problem only in constraints. Petya decided to visit Byteland during the summer holidays. It turned out that the history of this country is quite unusual. Initially, there were $ n $ different countries on the land that is now Berland. Each country had its own territory that was represented as a rectangle on the map. The sides of the rectangle were parallel to the axes, and the corners were located at points with integer coordinates. Territories of no two countries intersected, but it was possible that some territories touched each other. As time passed, sometimes two countries merged into one. It only happened if the union of their territories was also a rectangle. In the end only one country remained — Byteland. Initially, each country had a rectangular castle inside its territory. Its sides were parallel to the axes and its corners had integer coordinates. Some castles might touch the border of the corresponding country and sides or other castles. Miraculously, after all the unions the castles are still intact. Unfortunately, their locations are the only information we have to restore the initial territories of the countries. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1181E1/f468812bfa112254fc0a226123d17950651543de.png) The possible formation of Byteland. The castles are shown in blue. Petya wonders why no information about the initial countries remained. He suspected that the whole story is a fake. You were recommended to him as a smart person. Please check whether or not there exists a possible set of initial territories that could make the story true.

输入输出格式

输入格式


The first line contains a single integer $ n $ ( $ 1 \leq n \leq 1000 $ ) — the number of countries and castles. Each of the next $ n $ lines contains four integers $ a_i, b_i, c_i, d_i $ ( $ 0 \leq a_i < c_i \leq 10^9 $ , $ 0 \leq b_i < d_i \leq 10^9 $ ) — the coordinates of the $ i $ -th castle, where $ (a_i, b_i) $ are the coordinates of the lower left corner and $ (c_i, d_i) $ are the coordinates of the upper right corner. It is guaranteed, that no two castles intersect, however, they may touch.

输出格式


If there exists a possible set of territories that satisfies the story, print "YES", otherwise print "NO". You can print each letter in any case (upper or lower).

输入输出样例

输入样例 #1

4
0 0 1 2
0 2 1 3
1 0 2 1
1 1 2 3

输出样例 #1

YES

输入样例 #2

4
0 0 2 1
1 2 3 3
2 0 3 2
0 1 1 3

输出样例 #2

NO

说明

The castles in the first and second examples are shown on the pictures below. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1181E1/65c05eff44019e46877011da23e6739903c4b116.png) ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1181E1/13651d9028d4dc1ad40258518684f2d9fe9c5d09.png)

Input

题意翻译

在一片无穷大的网格上,分布着 $n$ 个王国,这个坐标系上的每个格子都属于恰好一个王国。 每个王国的领地都是一个平行于坐标轴的端点均为整点的矩形,且每个王国的内部都有恰好一个城堡,每个城堡的占地也是一个平行于坐标轴的端点均为整点的矩形。 当两个王国的边界相邻,且将它们的领土合并后仍然是一个矩形,那么我们就可以将这两个王国合为一个。 现在,你并不知道这 $n$ 个王国的领土分布,你只知道这 $n$ 个城堡的位置,你需要判断这些王国是否有可能最后合并成一个王国。 $1\leq n\leq 1000$

加入题单

算法标签: