博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 1523
阅读量:4922 次
发布时间:2019-06-11

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

无向图求割点模板题

1 #include 
2 #include
3 #include
4 using namespace std; 5 const int N=1002; 6 7 int subnets[N]; 8 int dfn[N],low[N]; 9 int count,mun,son,ks;10 11 bool map[N][N];12 bool vis[N];13 14 void init(){15 memset(map,0,sizeof(map));16 for(int i=0;i<=N;++i){17 vis[i]=dfn[i]=low[i]=subnets[i]=0;18 }19 count=1,son=0;20 mun=0;21 dfn[1]=low[1]=vis[1]=1;22 }23 void dfs(int x){24 for(int i=1;i<=mun;i++){25 if(map[x][i]){26 if(!vis[i]){27 vis[i]=1;28 dfn[i]=low[i]=++count;29 dfs(i);30 low[x]=min(low[x],low[i]);31 if(low[i]>=dfn[x]){32 if(x==1)son++;33 else subnets[x]++;34 }35 }36 else low[x]=min(low[x],dfn[i]);37 }38 }39 }40 void print(){41 bool yes=0;42 if(son>1)subnets[1]=son-1;43 printf("Network #%d\n",++ks);44 for(int i=1;i<=mun;i++){45 if(subnets[i]){46 yes=1;47 printf(" SPF node %d leaves %d subnets\n",i,subnets[i]+1);48 }49 }50 if(!yes)printf(" No SPF nodes\n");51 printf("\n");52 }53 int main(){54 //freopen("test.txt","r",stdin);55 int a,b;56 ks=0;57 while(scanf("%d",&a)&&a){58 init();59 scanf("%d",&b);60 map[a][b]=map[b][a]=1;61 mun=max(max(b,a),mun);62 while(scanf("%d",&a)&&a){63 scanf("%d",&b);64 map[a][b]=map[b][a]=1;65 mun=max(max(b,a),mun);66 }67 dfs(1);68 print();69 }70 return 0;71 }

 

转载于:https://www.cnblogs.com/Mr-Xu-JH/p/3899126.html

你可能感兴趣的文章
数论——HDU-1576
查看>>
ST表——HDU-3183
查看>>
欧拉函数——POJ - 2478
查看>>
数论——HDU - 2136
查看>>
Mecanim动画
查看>>
设计模式(8)--外观模式
查看>>
H5中 input消除默认,取消在手机上的点击高亮效果
查看>>
左移右移置位
查看>>
Codeforces 908 D New Year and Arbitrary Arrangement
查看>>
2019学期第七周编程总结
查看>>
Git 常用命令(转)
查看>>
[转]游戏完成平衡性的技巧
查看>>
架构实例之SpringTest
查看>>
你的跑步姿势正确吗? 教你正确跑步姿势 & 常识
查看>>
(转)Dubbo 简单Dome搭建
查看>>
mybatis在xml文件中处理大于号小于号的方法
查看>>
联想 P70-t 免解锁BL 免rec Magisk Xposed 救砖 ROOT
查看>>
wince扫描功能
查看>>
第四章
查看>>
missing python bz2 module
查看>>