// Problem: CF1278D Segment Tree
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/CF1278D
// Memory Limit: 250 MB
// Time Limit: 2000 ms
// Author:Cutele
//
// Powered by CP Editor (https://cpeditor.org)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll>PLL;
typedef pair<int, int>PII;
typedef pair<double, double>PDD;
#define I_int ll
inline ll read()
{
ll x = 0, f = 1;
char ch = getchar();
while(ch < '0' || ch > '9')
{
if(ch == '-')f = -1;
ch = getchar();
}
while(ch >= '0' && ch <= '9')
{
x = x * 10 + ch - '0';
ch = getchar();
}
return x * f;
}
inline void out(ll x){
if (x < 0) x = ~x + 1, putchar('-');
if (x > 9) out(x / 10);
putchar(x % 10 + '0');
}
inline void write(ll x){
if (x < 0) x = ~x + 1, putchar('-');
if (x > 9) write(x / 10);
putchar(x % 10 + '0');
}
#define read read()
#define closeSync ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define multiCase int T;cin>>T;for(int t=1;t<=T;t++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i<(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define perr(i,a,b) for(int i=(a);i>(b);i--)
ll ksm(ll a, ll b,ll p)
{
ll res = 1;
while(b)
{
if(b & 1)res = res * a%p;
a = a * a %p;
b >>= 1;
}
return res;
}
const int inf = 0x3f3f3f3f;
const int maxn=5e5+7;
int root[maxn];
struct node{
int l,r;
bool operator < (const node & A) const{
return l < A.l;
}
}a[maxn];
int Find(int x){
if(x!=root[x]) root[x]=Find(root[x]);
return root[x];
}
set<node>s;
int main(){
int n=read;
rep(i,1,n){
a[i].l=read,a[i].r=read;root[i]=i;
}
sort(a+1,a+n+1);
s.insert({a[1].r,1});
rep(i,2,n){
while(s.size()){
node t=*s.begin();
if(t.l<=a[i].l) s.erase(s.begin());
else break;
}
for(set<node>::iterator it=s.begin();it!=s.end();it++){
node t=*it;
if(t.l<a[i].r){
int u=i,v=t.r;
int fu=Find(u),fv=Find(v);
if(fu!=fv) root[fu]=fv;
else{
puts("NO");return 0;
}
}
else break;
}
s.insert({a[i].r,i});
}
int res=0;
for(int i=1;i<=n;i++)
if(i==Find(i)) res++;
if(res==1) puts("YES");
else puts("NO");
return 0;
}
CF1278D Segment Tree(set+并查集)
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Java8处理对象List集合之间的交集、并集、差集和去重
Java8处理对象List集合之间的交集、并集、差集和去重
交集 并集 去重 Stream 差集 -
HDU 1558 Segment set 并查集加计算几何
Problem DescriptionA segment and all
ACM HDOJ HDU 1558 d3 -
hdu1558 Segment set (判断线段相交+并查集)
Total Submission(s): 4358 Accepted Submission(s): 1634Problem DescriptionA segment
hdu1558 Segment set 线段相交 并查集 #include -
并查集(Disjoint Set)
在一些有N个元素的集合应用问题中,我们通常是在开始时让
路径压缩 并查集 数组 -
Is It A Tree?(并查集)
欢迎参加——每周六晚的BestCoder(有米!)Is It A Tree?Time
ide #include java -
java 进程崩溃生成日志文件
Java中jn
java 进程崩溃生成日志文件 java 头文件 c++