标签:开始 namespace class 100% NPU swa name struct 编号
1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 #include<queue> 7 #include<vector> 8 using namespace std; 9 struct edge {int to,from; }e[200010*2],c[200010*2]; 10 int n,m,q,dis,tot,cnt,num,cnt1,cnt2,head[200010],last[200010],dfn[100010],low[100010],k[100010],sh[200010],f[200010][21],dep[200010],d[200010]; 11 void insert(int x,int y) { e[++cnt].to=y; e[cnt].from=head[x]; head[x]=cnt; } 12 void insert1(int x,int y) { c[++cnt2].to=y; c[cnt2].from=last[x]; last[x]=cnt2; } 13 void tarjan(int x) 14 { 15 dfn[x]=low[x]=++cnt1; k[++num]=x; 16 for (int i=head[x];i;i=e[i].from) 17 { 18 int v=e[i].to; 19 if (dfn[v]==-1) 20 { 21 tarjan(v); 22 low[x]=min(low[x],low[v]); 23 if (low[v]>=dfn[x]) 24 { 25 tot++; 26 int j; 27 do 28 { 29 j=k[num--]; 30 insert1(tot,j); insert1(j,tot); 31 } 32 while (j!=v); 33 insert1(x,tot);insert1(tot,x); 34 } 35 } 36 else low[x]=min(low[x],dfn[v]); 37 } 38 } 39 void dfs(int x,int fa) 40 { 41 sh[sh[0]++]=x; f[x][0]=fa; 42 for (int i=1;i<=20;i++) f[x][i]=f[f[x][i-1]][i-1]; 43 for (int i=last[x];i;i=c[i].from) 44 { 45 int v=c[i].to; 46 if (v==fa) continue; 47 dep[v]=dep[x]+1; 48 dfs(v,x); 49 } 50 } 51 int lca(int x,int y) 52 { 53 if (dep[x]>dep[y]) swap(x,y); 54 for (int i=20;i>=0;i--) 55 if (dep[f[y][i]]>=dep[x]) 56 y=f[y][i]; 57 if (x==y) return x; 58 for (int i=20;i>=0;i--) 59 if (f[x][i]!=f[y][i]) 60 x=f[x][i],y=f[y][i]; 61 return f[x][0]; 62 } 63 int main() 64 { 65 scanf("%d%d%d",&n,&m,&q); 66 tot=n; 67 for (int i=1;i<=m;i++) 68 { 69 int u,v; 70 scanf("%d%d",&u,&v); 71 insert(u,v); insert(v,u); 72 } 73 memset(dfn,-1,sizeof(dfn)); 74 tarjan(1); 75 dep[1]=1; dfs(1,0); 76 for (int i=1;i<=q;i++) 77 { 78 int x,y; 79 scanf("%d%d",&x,&y); 80 dis=lca(x,y); 81 d[x]++; d[y]++; d[dis]--; d[f[dis][0]]--; 82 } 83 for (int i=tot;i>=1;i--) 84 { 85 int now=sh[i]; 86 d[f[now][0]]+=d[now]; 87 } 88 for (int i=1;i<=n;i++) printf("%d\n",d[i]); 89 return 0; 90 }
[差分][倍增lca][tarjan] Jzoj P3325 压力
标签:开始 namespace class 100% NPU swa name struct 编号
原文地址:https://www.cnblogs.com/Comfortable/p/9281112.html