hdu3844 Mining Your Own Business,無向圖的雙連通分量

來源:互聯網
上載者:User

標籤:style   blog   http   io   ar   for   2014   sp   log   

點擊開啟連結


無向圖的雙連通分量

#include<cstdio>#include<stack>#include<vector>#include<map>#include<algorithm>#include<cstring>#pragma comment(linker, "/STACK:102400000,102400000")using namespace std;typedef long long LL;const int maxn = 50010;struct Edge {    int u, v;    Edge(int u, int v):u(u), v(v) {}};int pre[maxn], low[maxn], bccno[maxn], iscut[maxn], bcc_cnt, dfs_clock;vector<int> g[maxn], bcc[maxn];stack<Edge> S;int dfs(int u, int fa){    int lowu = pre[u] = ++dfs_clock;    int child = 0;    for(int i = 0; i < g[u].size(); i++) {        int v = g[u][i];        Edge e = Edge(u, v);        if(!pre[v]) {            S.push(e);            child++;            int lowv = dfs(v, u);            lowu = min(lowu, lowv);            if(lowv >= pre[u]) {                iscut[u] = 1;                bcc_cnt++;                bcc[bcc_cnt].clear();                for(;;) {                    Edge x = S.top();                    S.pop();                    if(bccno[x.u] != bcc_cnt) {                        bccno[x.u] = bcc_cnt;                        bcc[bcc_cnt].push_back(x.u);                    }                    if(bccno[x.v] != bcc_cnt) {                        bccno[x.v] = bcc_cnt;                        bcc[bcc_cnt].push_back(x.v);                    }                    if(x.u == u && x.v == v) break;                }            }        } else if(pre[v] < pre[u] && v!= fa) {            S.push(e);            lowu = min(lowu, pre[v]);        }    }    if(child == 1 && fa < 0) iscut[u] = 0;    return low[u] = lowu;}void find_bcc(int n){    memset(iscut, 0, sizeof(iscut));    memset(pre, 0, sizeof(pre));    memset(bccno, 0, sizeof(bccno));    dfs_clock = bcc_cnt = 0;    for(int i = 0; i < n; i++)        if(!pre[i]) dfs(i, -1);}int kase;void solve(int n){    find_bcc(n);    LL ans1 = 0, ans2 = 1;    for(int i = 1; i <= bcc_cnt; i++) {        int cut_cnt = 0;        for(int j = 0; j < bcc[i].size(); j++)            if(iscut[bcc[i][j]]) cut_cnt++;        if(cut_cnt == 1)            ans1++, ans2 *= (LL)(bcc[i].size() - cut_cnt);    }    if(bcc_cnt == 1) {        ans1 = 2, ans2 = (LL)(n-1)*n/2;    }    printf("Case %d: %I64d %I64d\n", kase, ans1, ans2);}int main(void){    int m;    while(scanf("%d", &m), m) {        kase++;        for(int i = 0; i < maxn; i++)            g[i].clear();        int mxn = 0;        while(m--) {            int u, v;            scanf("%d%d", &u, &v);            mxn = max(mxn, max(u, v));            u--, v--;            g[u].push_back(v), g[v].push_back(u);        }        solve(mxn);    }    return 0;}


hdu3844 Mining Your Own Business,無向圖的雙連通分量

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.