zoukankan      html  css  js  c++  java
  • poj 1523 SPF

    SPF
    Time Limit: 1000MS   Memory Limit: 10000K
         

    Description

    Consider the two networks shown below. Assuming that data moves around these networks only between directly connected nodes on a peer-to-peer basis, a failure of a single node, 3, in the network on the left would prevent some of the still available nodes from communicating with each other. Nodes 1 and 2 could still communicate with each other as could nodes 4 and 5, but communication between any other pairs of nodes would no longer be possible. 

    Node 3 is therefore a Single Point of Failure (SPF) for this network. Strictly, an SPF will be defined as any node that, if unavailable, would prevent at least one pair of available nodes from being able to communicate on what was previously a fully connected network. Note that the network on the right has no such node; there is no SPF in the network. At least two machines must fail before there are any pairs of available nodes which cannot communicate. 

    Input

    The input will contain the description of several networks. A network description will consist of pairs of integers, one pair per line, that identify connected nodes. Ordering of the pairs is irrelevant; 1 2 and 2 1 specify the same connection. All node numbers will range from 1 to 1000. A line containing a single zero ends the list of connected nodes. An empty network description flags the end of the input. Blank lines in the input file should be ignored.

    Output

    For each network in the input, you will output its number in the file, followed by a list of any SPF nodes that exist. 

    The first network in the file should be identified as "Network #1", the second as "Network #2", etc. For each SPF node, output a line, formatted as shown in the examples below, that identifies the node and the number of fully connected subnets that remain when that node fails. If the network has no SPF nodes, simply output the text "No SPF nodes" instead of a list of SPF nodes.

    Sample Input

    1 2
    5 4
    3 1
    3 2
    3 4
    3 5
    0
    
    1 2
    2 3
    3 4
    4 5
    5 1
    0
    
    1 2
    2 3
    3 4
    4 6
    6 3
    2 5
    5 1
    0
    
    0

    Sample Output

    Network #1
      SPF node 3 leaves 2 subnets
    
    Network #2
      No SPF nodes
    
    Network #3
      SPF node 2 leaves 2 subnets
      SPF node 3 leaves 2 subnets

    Source

     
    题意:求割点,并求出割点将联通块分为多少块
     
    分为多少块:枚举与割点相连的每一个点,有多少不同的low,就分为多少块
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #define N 1001
    using namespace std;
    int tot=1,front[N],to[N*N*2],nxt[N*N*2];
    int dfn[N],low[N],id;
    bool cutpoint[N],part[N];
    void add(int u,int v)
    {
        to[++tot]=v; nxt[tot]=front[u]; front[u]=tot;
        to[++tot]=u; nxt[tot]=front[v]; front[v]=tot;
    }
    void tarjan(int u,int pre)
    {
        dfn[u]=low[u]=++id;
        int sum=0;
        bool tmp=false;
        for(int i=front[u];i;i=nxt[i])
        {
            if(i==(pre^1)) continue;
            if(!dfn[to[i]]) 
            {
                sum++;
                tarjan(to[i],i);
                low[u]=min(low[u],low[to[i]]);
                if(low[to[i]]>=dfn[u]) tmp=true;    
            }
            else low[u]=min(low[u],dfn[to[i]]);
        }
        if(!pre) { if(sum>1) cutpoint[u]=true; }
        else if(tmp) cutpoint[u]=true;
    }
    void solve()
    {
        tarjan(1,0);
        bool ok=false;  int sum;
        for(int i=1;i<N;i++)
         if(cutpoint[i])
         {
             ok=true; sum=0;
             memset(part,0,sizeof(part));
             for(int j=front[i];j;j=nxt[j])
              if(!part[low[to[j]]])
              {
                    part[low[to[j]]]=true;
                    sum++;
              }    
            printf("  SPF node %d leaves %d subnets
    ",i,sum);    
         }
        if(!ok) printf("  No SPF nodes
    ");
        puts(""); 
    }
    void clear()
    {
        tot=1; id=0;
        memset(front,0,sizeof(front));
        memset(dfn,0,sizeof(dfn));
        memset(low,0,sizeof(low));
        memset(cutpoint,0,sizeof(cutpoint));
    }
    int main()
    {
        //freopen("1.txt","w",stdout);
        int u,v,t=0,last;
        while(scanf("%d",&u)!=EOF)
        {
            if(u) 
            {
                scanf("%d",&v);
                add(u,v);
            }
            else
            {
                if(!last) return 0;
                t++;
                printf("Network #%d
    ",t);
                solve();
                clear();
            }
            last=u;
        }
    }
  • 相关阅读:
    罗尔定理、微分中值定理、广义微分中值定理
    高等数学和数学分析教材推荐及其学习方法浅谈
    音视频下载插件 安装及使用
    win10台式机rtl8188eu(FW 150 UM V2.0)无线网卡无法连接wifi(无法连接到这个网络)
    django模板中的extends和include使用方法
    wordpress中文目录出现“有点尴尬诶!该页无法显示"
    wordpress迁移后登陆时出现Forbidden You don’t have permission to access /wp-login.php on this server
    centos设置开机自启动脚本
    hexo的jacman主题设置语言为英文后偶尔出现中文
    安卓QQ聊天记录导出、备份完全攻略
  • 原文地址:https://www.cnblogs.com/TheRoadToTheGold/p/6920459.html
Copyright © 2011-2022 走看看