CF1181E1.A Story of One Country (Easy)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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 nn 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.

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 nn ( 1n10001 \leq n \leq 1000 ) — the number of countries and castles.

Each of the next nn lines contains four integers ai,bi,ci,dia_i, b_i, c_i, d_i ( 0ai<ci1090 \leq a_i < c_i \leq 10^9 , 0bi<di1090 \leq b_i < d_i \leq 10^9 ) — the coordinates of the ii -th castle, where (ai,bi)(a_i, b_i) are the coordinates of the lower left corner and (ci,di)(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.

首页