正解:$CDQ$分治+并查集。
这类题都是一个套路。把在区间$[l,r]$内恒出现的边连起来,然后使用带权并查集判断是否为奇环即可。
注意连边的一些细节,比如说点权需要改成$dep[u] \ xor \ dep[v] \ xor 1$,还有就是撤回的时候连上去的那个点深度设为$0$。
1 //It is made by wfj_2048~ 2 #include <algorithm> 3 #include <iostream> 4 #include <cstring> 5 #include <cstdlib> 6 #include <cstdio> 7 #include <vector> 8 #include <cmath> 9 #include <queue> 10 #include <stack> 11 #include <map> 12 #include <set> 13 #define inf (1<<30) 14 #define N (500010) 15 #define ls (x<<1) 16 #define rs (x<<1|1) 17 #define il inline 18 #define RG register 19 #define ll long long 20 #define File(s) freopen(s".in","r",stdin),freopen(s".out","w",stdout) 21 22 using namespace std; 23 24 struct node{ int x,y,a,h; }st[20000010]; 25 struct edge{ int u,v; }g[N]; 26 27 vector <int> mp[4*N]; 28 29 int h[N],a[N],dep[N],fa[N],sz[4*N],n,m,T,cnt,top; 30 31 il int gi(){ 32 RG int x=0,q=1; RG char ch=getchar(); 33 while ((ch<‘0‘ || ch>‘9‘) && ch!=‘-‘) ch=getchar(); 34 if (ch==‘-‘) q=-1,ch=getchar(); 35 while (ch>=‘0‘ && ch<=‘9‘) x=x*10+ch-48,ch=getchar(); 36 return q*x; 37 } 38 39 il void query(RG int x,RG int l,RG int r,RG int xl,RG int xr,RG int v){ 40 if (xl<=l && r<=xr){ ++sz[x],mp[x].push_back(v); return; } RG int mid=(l+r)>>1; 41 if (xr<=mid) query(ls,l,mid,xl,xr,v); 42 else if (xl>mid) query(rs,mid+1,r,xl,xr,v); 43 else query(ls,l,mid,xl,mid,v),query(rs,mid+1,r,mid+1,xr,v); return; 44 } 45 46 il int find(RG int x){ 47 if (fa[x]==x) return x; RG int y=find(fa[x]); 48 dep[x]=dep[fa[x]]^a[x]; return y; 49 } 50 51 il int unionn(RG int u,RG int v){ 52 RG int x=find(u),y=find(v); if (h[x]>h[y]) swap(x,y),swap(u,v); 53 if (x==y) return dep[u]^dep[v]^1; st[++top]=(node){x,y,a[x],h[y]}; 54 fa[x]=y,a[x]=dep[u]^dep[v]^1; if (h[x]==h[y]) ++h[y]; return 0; 55 } 56 57 il void del(RG int now){ 58 for (;top>now;--top){ 59 fa[st[top].x]=st[top].x,dep[st[top].x]=0; 60 a[st[top].x]=st[top].a,h[st[top].y]=st[top].h; 61 } 62 return; 63 } 64 65 il void solve(RG int x,RG int l,RG int r){ 66 RG int mid=(l+r)>>1,now=top; 67 for (RG int i=0,j,res;i<sz[x];++i){ 68 j=mp[x][i],res=unionn(g[j].u,g[j].v); 69 if (res){ for (RG int i=l;i<=r;++i) puts("No"); del(now); return; } 70 } 71 if (l==r){ puts("Yes"),del(now); return; } 72 solve(ls,l,mid),solve(rs,mid+1,r),del(now); return; 73 } 74 75 il void work(){ 76 n=gi(),m=gi(),T=gi(); for (RG int i=1;i<=n;++i) fa[i]=i,h[i]=a[i]=1; 77 for (RG int i=1,u,v,l,r;i<=m;++i){ 78 u=gi(),v=gi(),l=gi()+1,r=gi(); if (l>r) continue; 79 g[++cnt].u=u,g[cnt].v=v,query(1,1,T,l,r,cnt); 80 } 81 solve(1,1,T); return; 82 } 83 84 int main(){ 85 File("grape"); 86 work(); 87 return 0; 88 }
原文:http://www.cnblogs.com/wfj2048/p/6971730.html