POJ 1236 Network of Schools(強聯通縮點)

來源:互聯網
上載者:User

標籤:

Network of Schools 

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

52 4 3 04 5 0001 0

Sample Output

12

 1 #include<cstdio> 2 #include<cstring> 3 #include<vector> 4 #include<stack> 5 #include<algorithm> 6 using namespace std; 7  8 stack<int>s; 9 vector<int>G[105];10 int dfn[105],sccno[105],in[105],out[105],lowlink[105];11 int n,dfs_clock,scc_cnt;12 13 void init()14 {15     memset(lowlink,0,sizeof(lowlink));16     memset(dfn,0,sizeof(dfn));17     memset(in,0,sizeof(in));18     memset(out,0,sizeof(out));19     memset(sccno,0,sizeof(sccno));20     for(int i=1;i<=n;i++)G[i].clear();21     dfs_clock=scc_cnt=0;22 }23 24 void tarjan(int u)25 {26     lowlink[u]=dfn[u]=++dfs_clock;27     s.push(u);28     for(int i=0;i<G[u].size();i++)29     {30         int v=G[u][i];31         if(!dfn[v])32         {33             tarjan(v);34             lowlink[u]=min(lowlink[u],lowlink[v]);35         }36         else if(!sccno[v])37             lowlink[u]=min(lowlink[u],dfn[v]);38     }39     if(lowlink[u]==dfn[u])40     {41         scc_cnt++;42         while(1)43         {44             int x=s.top();45             s.pop();46             sccno[x]=scc_cnt;47             if(x==u)break;48         }49     }50 }51 52 int main()53 {54     while(scanf("%d",&n)!=EOF)55     {56         init();57         for(int i=1;i<=n;i++)58         {59             int tmp;60             while(scanf("%d",&tmp),tmp)61                 G[i].push_back(tmp);62         }63         for(int i=1;i<=n;i++)64             if(!dfn[i])65                 tarjan(i);66         for(int i=1;i<=n;i++)67             for(int j=0;j<G[i].size();j++)68                 if(sccno[i]!=sccno[G[i][j]])69                 {70                     out[sccno[i]]++;71                     in[sccno[G[i][j]]]++;72                 }73         int cnt1=0,cnt2=0;74         for(int i=1;i<=scc_cnt;i++)75         {76             if(!in[i])77                 cnt1++;78             if(!out[i])79                 cnt2++;80         }81         if(scc_cnt==1)82             printf("1\n0\n");83         else84             printf("%d\n%d\n",cnt1,max(cnt1,cnt2));85     }86     return 0;87 }

 



POJ 1236 Network of Schools(強聯通縮點)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.