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));
    }
  • 相关阅读:
    大数定理、中心极限定理、样本估计参数
    泰勒公式、Jenson不等式、切比雪夫不等式
    查询:分页、连接查询、自关联、子查询
    查询:排序Order by、聚合函数、分组groupby
    查询:基本查询、条件查询
    数据库和表的基本操作
    函数使用,增删改操作
    groupby
    统计分析函数
    pandas的基础使用
  • 原文地址:https://www.cnblogs.com/candy99/p/5989069.html
Copyright © 2011-2022 走看看