P1230 备用交换机
Posted zhangenming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P1230 备用交换机相关的知识,希望对你有一定的参考价值。
From easthong☆备用交换机 描述 Description n个城市之间有通讯网络,每个城市都有通讯交换机,直接或间接与其它城市连接。因电子设备容易损坏,需给通讯点配备备用交换机。但备用 交换机数量有限,不能全部配备,只能给部分重要城市配置。于是规定:如果某个城市由于交换机损坏,不仅本城市通讯中断,还造成其它城市通讯中断,则配备备 用交换机。请你根据城市线路情况,计算需配备备用交换机的城市个数,及需配备备用交换机城市的编号。 输入格式 Input Format 第一行,一个整数n,表示共有n个城市(2<=n<=20000) 下面有若干行(<=60000):每行2个数a、b,a、b是城市编号,表示a与b之间有直接通讯线路。 输出格式 Output Format 第一行,1个整数m,表示需m个备用交换机,下面有m行,每行有一个整数,表示需配备交换机的城市编号,输出顺序按编号由小到大。如果没有城市需配备备用交换机则输出0。 样例输入 Sample Input 7 1 2 2 3 2 4 3 4 4 5 4 6 4 7 5 6 6 7 样例输出 Sample Output 2 2 4 时间限制 Time Limitation 1s
一个割点的板子题
代码如下
1 #include <bits/stdc++.h> 2 using namespace std; 3 inline int read(){ 4 int x=0;int f=1;char ch=getchar(); 5 while(!isdigit(ch)) {if(ch==‘-‘) f=-1;ch=getchar();} 6 while(isdigit(ch)) {x=x*10+ch-‘0‘;ch=getchar();} 7 return x*f; 8 } 9 const int MAXN=1e6+10; 10 namespace zhangenming{ 11 struct node{ 12 int y,next; 13 }e[MAXN<<1]; 14 int linkk[MAXN<<1],len=0,n,m,low[MAXN],dfn[MAXN]={},dfs_clock=0,ans[MAXN],tmp=0,vis[MAXN]={}; 15 inline void insert(int xx,int yy){ 16 e[++len].y=yy;e[len].next=linkk[xx];linkk[xx]=len; 17 } 18 void init(){ 19 n=read(); 20 int xx,yy; 21 while(scanf("%d%d",&xx,&yy)!=EOF){ 22 insert(xx,yy); 23 insert(yy,xx); 24 } 25 } 26 void tarjin(int st,int father){ 27 dfn[st]=low[st]=++dfs_clock; 28 vis[st]=1; 29 int son=0; 30 for(int i=linkk[st];i;i=e[i].next){ 31 if(e[i].y!=father&&!dfn[e[i].y]){ 32 tarjin(e[i].y,st); 33 if(low[e[i].y]<low[st]) low[st]=low[e[i].y]; 34 if(low[e[i].y]>=dfn[st]) son++; 35 } 36 else if(dfn[e[i].y]<low[st]) low[st]=dfn[e[i].y]; 37 } 38 if(son>=2||son&&father) ans[++tmp]=st; 39 } 40 void solve(){ 41 for(int i=1;i<=n;i++){ 42 if(!vis[i]) tarjin(i,0); 43 } 44 sort(ans+1,ans+tmp+1); 45 cout<<tmp<<endl; 46 for(int i=1;i<=tmp;i++){ 47 printf("%d ",ans[i]); 48 } 49 cout<<endl; 50 } 51 } 52 int main(){ 53 //freopen("aa.in","r",stdin); 54 //freopen("aa.out","w",stdout); 55 using namespace zhangenming; 56 init(); 57 solve(); 58 return 0; 59 }
注意图不一定联通
以上是关于P1230 备用交换机的主要内容,如果未能解决你的问题,请参考以下文章