本文共 1568 字,大约阅读时间需要 5 分钟。
先求拓扑序
现在要求一棵树,如果某一个结点消失,那么整棵子树都会消失
一个点能影响的只能是在拓扑序中比它靠前的,于是边往树中加点,就边求一个点在原图中连接的点的lca
为了保证这些点能受到当前要加入点的影响,就按拓扑序加点,最后dfs一遍找出子树大小
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 11 #include 12 #include 13 #define rre(i,r,l) for(int i=(r);i>=(l);i--) 14 #define re(i,l,r) for(int i=(l);i<=(r);i++) 15 #define Clear(a,b) memset(a,b,sizeof(a)) 16 #define inout(x) printf("%d",(x)) 17 #define douin(x) scanf("%lf",&x) 18 #define strin(x) scanf("%s",(x)) 19 #define LLin(x) scanf("%lld",&x) 20 #define op operator 21 #define CSC main 22 typedef unsigned long long ULL; 23 typedef const int cint; 24 typedef long long LL; 25 using namespace std; 26 void inin(int &ret) 27 { 28 ret=0;int f=0;char ch=getchar(); 29 while(ch<'0'||ch>'9'){ if(ch=='-')f=1;ch=getchar();} 30 while(ch>='0'&&ch<='9')ret*=10,ret+=ch-'0',ch=getchar(); 31 ret=f?-ret:ret; 32 } 33 int sta[100010],top,n,m; 34 struct wocao 35 { 36 int head[100010],next[100020],zhi[100020],in[100010],ed,s[100010],fa[100010][20],shen[100010]; 37 int st[100010],to; 38 void add(int a,int b) 39 { 40 next[++ed]=head[a],head[a]=ed,zhi[ed]=b; 41 in[b]++; 42 } 43 void dfs(int x) 44 { 45 s[x]=1; 46 for(int i=head[x];i;i=next[i])if(zhi[i]!=fa[x][0]) 47 { 48 fa[zhi[i]][0]=x; 49 dfs(zhi[i]); 50 s[x]+=s[zhi[i]]; 51 } 52 } 53 int lca(int a,int b) 54 { 55 if(a==-1)return b; 56 if(shen[a]
转载于:https://www.cnblogs.com/HugeGun/p/5227577.html