POJ1523tarjan求割点

Posted hesorchen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ1523tarjan求割点相关的知识,希望对你有一定的参考价值。

题目

POJ 1523

求割点数量以及删除每个割点后连通分量的数量。

代码

#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <vector>
using namespace std;

const int N = 1006;
vector<int> edge[N];

int dfn[N], low[N], ct, cut[N];
void tarjan(int u, bool isroot)
{
    dfn[u] = low[u] = ++ct;
    int tot = 0;
    for (int i = 0; i < edge[u].size(); i++)
    {
        int v = edge[u][i];
        if (!dfn[v])
        {
            tarjan(v, 0);
            low[u] = min(low[u], low[v]);
            tot += low[v] >= dfn[u];
        }
        else
        {
            low[u] = min(low[u], dfn[v]);
        }
    }
    cut[u] = tot - isroot + 1; //删除每个割点会产生的连通分量数量
}
int CA = 0;
int main()
{

    int u, v;
    while (cin >> u, u)
    {
        int n = 0;
        for (int i = 0; i < N; i++)
            edge[i].clear();
        memset(cut, 0, sizeof cut);
        memset(dfn, 0, sizeof dfn);
        memset(low, 0, sizeof low);
        cin >> v;
        n = max(n, max(u, v));
        edge[u].push_back(v);
        edge[v].push_back(u);
        while (cin >> u, u)
        {
            cin >> v;
            n = max(n, max(u, v));
            edge[u].push_back(v);
            edge[v].push_back(u);
        }
        tarjan(1, 1);
        printf("Network #%d\\n", ++CA);
        bool flag = 0;
        for (int i = 1; i <= n; i++)
        {
            if (cut[i] <= 1)
                continue;
            flag = 1;
            printf("  SPF node %d leaves %d subnets\\n", i, cut[i]);
        }
        flag ? flag : puts("  No SPF nodes");
        puts("");
    }
    return 0;
}

以上是关于POJ1523tarjan求割点的主要内容,如果未能解决你的问题,请参考以下文章

求割点 poj 1523

POJ 1523 SPF 求割点的好(板子)题!

POJ1144 tarjan求割点模板

poj1144 tarjan求割点

POJ-1523-SPF(求割点)

poj 2117 Electricity(tarjan求割点删掉之后的连通块数)