BZOJ1123: [POI2008]BLO
阿新 • • 發佈:2018-04-20
一個點 sin bzoj1123 += -s 題目 style span true
題目大意:
給定一張無向圖,求刪去一個點以後有多少個有序點對不連通。
題解:
在Tarjan的過程中記錄不能到達這個節點以上的子樹和,統計答案。
代碼:
#include<cstdio> #include<algorithm> using namespace std; int n,m,ti,cnt,last[1000005],dfn[1000005],low[1000005],sz[1000005]; long long ans[1000005]; struct node{ int to,next; }e[1000005]; void add(int a,int b){ e[++cnt].to=b; e[cnt].next=last[a]; last[a]=cnt; } void Tarjan(int x,int fa){ int cnt=0; dfn[x]=low[x]=++ti; sz[x]=1; for (int i=last[x]; i; i=e[i].next){ int V=e[i].to; if (V==fa) continue; if (!dfn[V]){ Tarjan(V,x); sz[x]+=sz[V]; low[x]=min(low[x],low[V]); if (low[V]>=dfn[x]){ ans[x]+=1ll*cnt*sz[V]; cnt+=sz[V]; } } else if (sz[V]) low[x]=min(low[x],dfn[V]); } ans[x]+=1ll*cnt*(n-cnt-1); } int main(){ scanf("%d%d",&n,&m); for (int i=1; i<=m; i++){ int x,y; scanf("%d%d",&x,&y); add(x,y); add(y,x); } Tarjan(1,0); for (int i=1; i<=n; i++) printf("%lld\n",(ans[i]+n-1)*2); return 0; }
BZOJ1123: [POI2008]BLO