zoukankan      html  css  js  c++  java
  • POJ1236Network of Schools[强连通分量|缩点]

    Network of Schools
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 16571   Accepted: 6558

    Description

    A number of schools are connected to a computer network. Agreements have been developed among those schools: each school maintains a list of schools to which it distributes software (the “receiving schools”). Note that if B is in the distribution list of school A, then A does not necessarily appear in the list of school B 
    You are to write a program that computes the minimal number of schools that must receive a copy of the new software in order for the software to reach all schools in the network according to the agreement (Subtask A). As a further task, we want to ensure that by sending the copy of new software to an arbitrary school, this software will reach all schools in the network. To achieve this goal we may have to extend the lists of receivers by new members. Compute the minimal number of extensions that have to be made so that whatever school we send the new software to, it will reach all other schools (Subtask B). One extension means introducing one new member into the list of receivers of one school. 

    Input

    The first line contains an integer N: the number of schools in the network (2 <= N <= 100). The schools are identified by the first N positive integers. Each of the next N lines describes a list of receivers. The line i+1 contains the identifiers of the receivers of school i. Each list ends with a 0. An empty list contains a 0 alone in the line.

    Output

    Your program should write two lines to the standard output. The first line should contain one positive integer: the solution of subtask A. The second line should contain the solution of subtask B.

    Sample Input

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

    Sample Output

    1
    2
    

    Source


    题意:
    给定一个n (n<=100)个点的有向图,问:
      Q1、最少需要选择多少个点,使得从这些点出发能遍历完整个图;
      Q2、最少需要添加多少条有向边,使得整个图成为强连通图;

    强连通分量+缩点
    Q1:入度为0
    Q2:max(入度为0,出度为0)
    注意只有一个scc时
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    using namespace std;
    const int N=105;
    typedef long long ll;
    inline int read(){
        char c=getchar();int x=0,f=1;
        while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();}
        while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
        return x*f;
    }
    int n;
    struct edge{
        int v,ne;
    }e[N*N];
    int h[N],cnt=0;
    inline void ins(int u,int v){
        cnt++;
        e[cnt].v=v;e[cnt].ne=h[u];h[u]=cnt;
    }
    
    int dfn[N],low[N],belong[N],dfc,scc;
    int st[N],top=0;
    void dfs(int u){
        dfn[u]=low[u]=++dfc;
        st[++top]=u;
        for(int i=h[u];i;i=e[i].ne){
            int v=e[i].v;
            if(!dfn[v]){
                dfs(v);
                low[u]=min(low[u],low[v]);
            }else if(!belong[v])
                low[u]=min(low[u],dfn[v]);
        }
        if(low[u]==dfn[u]){
            scc++;
            while(true){
                int x=st[top--];
                belong[x]=scc;
                if(x==u) break;
            }
        }
    }
    int outd[N],ind[N];
    void point(){
        for(int u=1;u<=n;u++)
            for(int i=h[u];i;i=e[i].ne){
                int v=e[i].v;
                if(belong[u]!=belong[v]) outd[belong[u]]++,ind[belong[v]]++;
            }
    }
    int main(){
        n=read();
        for(int u=1;u<=n;u++){
            int v=read();
            while(v!=0){ins(u,v);v=read();}
        }
        for(int i=1;i<=n;i++) if(!dfn[i]) dfs(i);
        point();
        int cnt1=0,cnt2=0;
        for(int i=1;i<=scc;i++){
            if(ind[i]==0) cnt1++;
            if(outd[i]==0) cnt2++;
        }
        if(scc==1) printf("1
    0");
        else printf("%d
    %d",cnt1,max(cnt1,cnt2));
    }
  • 相关阅读:
    各种排序算法的时间复杂度
    svn版本管理系统出现的问题解决办法
    算法时间复杂度
    js处理时间戳显示的问题
    cache缓存的BUG
    使用phpstorm提交svn代码版本管理系统遇到的问题解决办法
    20161101.20161115这两周的开发总结
    mac 上安装 redis
    终极 shell zsh
    在 mac 上利用 homebrew 安装软件
  • 原文地址:https://www.cnblogs.com/candy99/p/5989069.html
Copyright © 2011-2022 走看看