博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tarjan+缩点+强连通定理
阅读量:7051 次
发布时间:2019-06-28

本文共 3278 字,大约阅读时间需要 10 分钟。

C - Network of Schools
Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u
 

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

1

2

这个题最大的难点在于任务二。任务二的意思就是加入最少的边使一个有向图变成强连通图,有一个定理是max(n,m)当中n是出度为0的点的个数,m是入度为0的点的个数,当然,假设这个图是强连通图的话。就须要讨论了,这时答案就是0了。将第二个问题解决掉。这个题就是一个模板题了,可是我如今仍没有证明这个命题的正确性!有大神说显然。我认为应该能够证出来。希望看到这个博客的大神能够帮帮忙。谢谢。

#include
#include
#include
#include
using namespace std;int dfn[120];int belong[120],bnt,instack[120];int index,out[120],in[120],low[120];int map[120][120];stack
S;void tarjan(int i){ dfn[i] = low[i] = ++index; S.push(i); instack[i] = 1; for(int j = 1;j<=map[i][0];j++){ int k = map[i][j]; if(!dfn[k]){ tarjan(k); low[i] = min(low[i],low[k]); } else if(instack[k]) low[i] = min(low[i],dfn[k]); } if(low[i] == dfn[i]){ bnt++; int j; do{ j = S.top(); S.pop(); instack[j] = 0; belong[j] = bnt; }while(i!=j); }}int main(){ int n,m,ans,ans1; while(~scanf("%d",&n)){ memset(dfn,0,sizeof(dfn)); memset(low,0,sizeof(low)); memset(instack,0,sizeof(instack)); memset(out,0,sizeof(out)); memset(in,0,sizeof(in)); memset(map,0,sizeof(map)); bnt = index = 0; ans = ans1 = 0; for(int i=1;i<=n;i++){ while(scanf("%d",&m),m) if(m)map[i][++map[i][0]] = m; } for(int i=1;i<=n;i++) if(!dfn[i])tarjan(i); for(int i=1;i<=n;i++){ for(int j = 1;j<=map[i][0];j++){ if(belong[i]!=belong[map[i][j]]){ out[belong[i]]++; in[belong[map[i][j]]]++; } } } for(int i=1;i<=bnt;i++){ if(out[i]==0)ans++; if(in[i]==0)ans1++; } printf("%d\n",ans1); if(bnt ==1)printf("0\n"); else printf("%d\n",max(ans1,ans)); }}

转载地址:http://sypol.baihongyu.com/

你可能感兴趣的文章
SQLite 查询或更新上一条插入的数据
查看>>
Win7下搭建android环境
查看>>
那些年不上运维自动化 NO ZUO NO DIE 写下的关机脚本
查看>>
Centos7下安装samba
查看>>
debian7 sudo失效
查看>>
逻辑运算符-||,即或
查看>>
扩展阅读- redis 配置参数详解
查看>>
Apr、Apr-Util 安装
查看>>
Blender中文版下载及相关资料
查看>>
Azure运维系列11:Azure托管磁盘转非托管磁盘
查看>>
老web换新枝----Sails.js移动设备的全新生产力(二)
查看>>
我的友情链接
查看>>
android 之1
查看>>
桥梁(Bridge)模式
查看>>
iTerm2使用zmodem协议上传下载文件
查看>>
Hinton神经网络公开课9 Ways to make neural networks generalize better
查看>>
程序员的出路之一
查看>>
HTML文字排版(摘抄自慕课)
查看>>
Direct2D (31) : 命中测试 - ID2D1Geometry.FillContainsPoint()、StrokeContainsPoint()
查看>>
学用 ASP.Net 之 "字符串" (1): 基础
查看>>