CF1284D.New Year and Conference

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Filled with optimism, Hyunuk will host a conference about how great this new year will be!

The conference will have nn lectures. Hyunuk has two candidate venues aa and bb . For each of the nn lectures, the speaker specified two time intervals [sai,eai][sa_i, ea_i] ( saieaisa_i \le ea_i ) and [sbi,ebi][sb_i, eb_i] ( sbiebisb_i \le eb_i ). If the conference is situated in venue aa , the lecture will be held from saisa_i to eaiea_i , and if the conference is situated in venue bb , the lecture will be held from sbisb_i to ebieb_i . Hyunuk will choose one of these venues and all lectures will be held at that venue.

Two lectures are said to overlap if they share any point in time in common. Formally, a lecture held in interval [x,y][x, y] overlaps with a lecture held in interval [u,v][u, v] if and only if max(x,u)min(y,v)\max(x, u) \le \min(y, v) .

We say that a participant can attend a subset ss of the lectures if the lectures in ss do not pairwise overlap (i.e. no two lectures overlap). Note that the possibility of attending may depend on whether Hyunuk selected venue aa or venue bb to hold the conference.

A subset of lectures ss is said to be venue-sensitive if, for one of the venues, the participant can attend ss , but for the other venue, the participant cannot attend ss .

A venue-sensitive set is problematic for a participant who is interested in attending the lectures in ss because the participant cannot be sure whether the lecture times will overlap. Hyunuk will be happy if and only if there are no venue-sensitive sets. Determine whether Hyunuk will be happy.

输入格式

The first line contains an integer nn ( 1n1000001 \le n \le 100\,000 ), the number of lectures held in the conference.

Each of the next nn lines contains four integers saisa_i , eaiea_i , sbisb_i , ebieb_i ( 1sai,eai,sbi,ebi1091 \le sa_i, ea_i, sb_i, eb_i \le 10^9 , saieai,sbiebisa_i \le ea_i, sb_i \le eb_i ).

输出格式

Print "YES" if Hyunuk will be happy. Print "NO" otherwise.

You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    2
    1 2 3 6
    3 4 7 8

    输出#1

    YES
  • 输入#2

    3
    1 3 2 4
    4 5 6 7
    3 4 5 5

    输出#2

    NO
  • 输入#3

    6
    1 5 2 9
    2 4 5 8
    3 6 7 11
    7 10 12 16
    8 11 13 17
    9 12 14 18

    输出#3

    YES

说明/提示

In second example, lecture set {1,3}\{1, 3\} is venue-sensitive. Because participant can't attend this lectures in venue aa , but can attend in venue bb .

In first and third example, venue-sensitive set does not exist.

首页