洛谷 P3388 【模板】割点(割顶)
2019-08-16 07:50:40来源:博客园 阅读 ()
洛谷 P3388 【模板】割点(割顶)
目录
- 题目
- 思路
- $Code$
题目
戳
思路
tarjan求割点
不会的戳(不知道好不好自己康康吧)
$Code$
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#define min_(a,b) a>b?b:a;
#define MAXN 100010
int n,m,cnt,id;
int head[MAXN];
int dfn[MAXN],low[MAXN];
bool cut[MAXN];
struct Edge{
int next,to;
}edge[200001];//无向图
inline int read(){
int x=0;bool f=0;char c=getchar();
while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();}
while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
return f?-x:x;
}
void add_edge(int from,int to){
edge[++cnt].to=to,edge[cnt].next=head[from],head[from]=cnt;
}
void tarjan(int u,int father){
dfn[u]=low[u]=++id;
int ch=0;
for(int i=head[u];i;i=edge[i].next){
int x=edge[i].to;
if(!dfn[x]){
tarjan(x,father);
low[u]=min_(low[u],low[x]);
if(low[x]>=dfn[u]&&u!=father) cut[u]=1;
if(u==father) ch++;
}
low[u]=min_(low[u],dfn[x]);
}
if(ch>=2&&u==father) cut[u]=1;
}
int main(){
n=read(),m=read();
int u,v;
for(int i=1;i<=m;++i){
u=read(),v=read();
add_edge(u,v),add_edge(v,u);
}
for(int i=1;i<=n;++i){
if(!dfn[i]) tarjan(i,i);
}
int tot=0;
for(int i=1;i<=n;++i){
if(cut[i]) tot++;
}
printf("%d\n",tot);
for(int i=1;i<=n;++i){
if(cut[i]) printf("%d ",i);
}
puts("");
return 0;
}
原文链接:https://www.cnblogs.com/poi-bolg-poi/p/11215857.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:P1062 数列 题解
- C++冒泡排序 (基于函数模板实现) 2020-05-31
- C++ 模板类vector 2020-05-31
- C++ 模板类array 2020-05-31
- C++ 模板类vector 2020-05-30
- 洛谷P1164->小A点菜 2020-05-18
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash