1. 程式人生 > >【洛谷P3469】BLO

【洛谷P3469】BLO

char names continue 都去 cut head 連通 har esp

題目大意:給定 N 個點,M 條邊的聯通無向圖,求出對於每個點來說,將與這個點相連的所有邊都去掉後,會少多少個聯通的點對 (x,y)。

題解:連通性問題從 DFS 樹的角度進行考慮。對於 DFS 樹當前的節點來說,若其子節點的 low[] 大於等於子樹根節點的時間戳,則將該節點的邊去掉後,以該子樹的孩子節點為根的子樹會和其余部分不連通,會對答案產生一個貢獻。諸如此類分析即可得到總共的答案。

代碼如下

#include <bits/stdc++.h>
using namespace std;
const int maxv=1e5+10;
const int maxe=5e5+10;

inline int read(){
    int x=0,f=1;char ch;
    do{ch=getchar();if(ch=='-')f=-1;}while(!isdigit(ch));
    do{x=x*10+ch-'0';ch=getchar();}while(isdigit(ch));
    return f*x;
}

struct node{
    int nxt,to;
}e[maxe<<1];
int tot=1,head[maxv];
inline void add_edge(int from,int to){
    e[++tot]=node{head[from],to},head[from]=tot;
}

int n,m;
int dfs_clk,root,low[maxv],dfn[maxv],size[maxv];
long long ans[maxv];
bool cut[maxv];

void read_and_parse(){
    n=read(),m=read();
    for(int i=1,x,y;i<=m;i++){
        x=read(),y=read();
        if(x==y)continue;
        add_edge(x,y),add_edge(y,x);
    }
}

void dfs(int u,int fe){
    int flag=0,sum=0;
    dfn[u]=low[u]=++dfs_clk,size[u]=1;
    for(int i=head[u];i;i=e[i].nxt){
        int v=e[i].to;
        if(!dfn[v]){
            dfs(v,i);
            size[u]+=size[v];
            low[u]=min(low[v],low[u]);
            if(low[v]>=dfn[u]){
                ++flag;
                sum+=size[v];
                ans[u]+=(long long)size[v]*(n-size[v]);
                if(u!=root||flag>1)cut[u]=1;
            }
        }
        else if(i!=(fe^1))low[u]=min(low[u],dfn[v]);
    }
    if(cut[u])ans[u]+=(long long)(n-1-sum)*(sum+1)+n-1;
    else ans[u]=(n-1)<<1;
}

void solve(){
    root=1,dfs(1,0);
    for(int i=1;i<=n;i++)printf("%lld\n",ans[i]);
}

int main(){
    read_and_parse();
    solve();
    return 0;   
}

【洛谷P3469】BLO