codeforces845C(stl)

xiaoxiao2021-02-27  201

C. Two TVs time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output

Polycarp is a great fan of television.

He wrote down all the TV programs he is interested in for today. His list contains n shows, i-th of them starts at moment li and ends at moment ri.

Polycarp owns two TVs. He can watch two different shows simultaneously with two TVs but he can only watch one show at any given moment on a single TV. If one show ends at the same moment some other show starts then you can't watch them on a single TV.

Polycarp wants to check out all n shows. Are two TVs enough to do so?

Input

The first line contains one integer n (1 ≤ n ≤ 2·105) — the number of shows.

Each of the next n lines contains two integers li and ri (0 ≤ li < ri ≤ 109) — starting and ending time of i-th show.

Output

If Polycarp is able to check out all the shows using only two TVs then print "YES" (without quotes). Otherwise, print "NO" (without quotes).

Examples input 31 22 34 5 output YES input 41 22 32 31 2 output NO 题意:给你n个区间,问你将这些区间分成不相交的个数是否小于等于2(注意:不能有重点)。 思路:先对l排序,用multiset维护不相交区间个数。 代码: #include<bits/stdc++.h> using namespace std; const int maxn=2e5+5; struct node { int l; int r; }a[maxn]; bool cmp(const node &x,const node &y) { return x.l<y.l; } int main() { int n; while(scanf("%d",&n)!=EOF) { multiset<int>s; for(int i=0;i<n;i++) scanf("%d%d",&a[i].l,&a[i].r); sort(a,a+n,cmp); for(int i=0;i<n;i++) { auto it=s.lower_bound(a[i].l); if(it==s.begin()) s.insert(a[i].r); else { it--; s.erase(it); s.insert(a[i].r); } } if(s.size()>2) puts("NO"); else puts("YES"); } return 0; }
转载请注明原文地址: https://www.6miu.com/read-10837.html

最新回复(0)