链接:http://10.10.21.57/homework/173/problem/343
举个例子:
这种图中,2,7要建一个,那么就显然易见了,但是如果只有一个割点的话,就必须还选一个(这个塌了...)
然后是方案数,但是点双里边的可以随便选1个(如果点双个数大于2的话),这样乘一下就行。
步骤:
1、只有一个割点,必须选一个非割点。
2、有>=2个割点,不用选
3、有0个割点,必须选俩
代码:
#include<bits/stdc++.h>
using namespace std;
const int M=1000;
struct cow{int x,y;};
int tot,n,head[M];cow e[M*2];
void inse(int xxxx,int yyyy)
{
e[++tot].x=head[xxxx];
head[xxxx]=tot;
e[tot].y=yyyy;
}
long long ans2;
int dfn[M],low[M],num,s[M],top;
int ans1,a[M][M],f,root;bool b[M];
void tarjan(int x)
{
dfn[x]=low[x]=++num;s[++top]=x;int cnt=0;
for(int i=head[x];i;i=e[i].x)
{
int y=e[i].y;
if(!dfn[y])
{
tarjan(y);
low[x]=min(low[x],low[y]);
if(dfn[x]<=low[y])
{
cnt++;f++;
if(x!=root||cnt>1)b[x]=1;//给割点标记
int g,l=0;
do//进入
{
g=s[top--];
a[f][++l]=g;
}while(g!=y);
a[f][++l]=x;
}
}
else low[x]=min(low[x],dfn[y]);
}
}
int read()
{
int x=0;bool flag=1;
char c=getchar();
for(;c<'0'||c>'9';c=getchar())
if(c=='-')c=getchar();
for(;c>='0'&&c<='9';c=getchar())
x=(x<<1)+(x<<3)+c-'0';
return flag?x:-x;
}
int main()
{
freopen("input.in","r",stdin);
freopen("output.out","w",stdout);
int T=0;
while(1)
{
n=read();if(!n)return 0;
memset(head,0,sizeof(head));
tot=0;num=0;top=0;
ans1=0;ans2=1;T++;
for(int i=1;i<=n;i++)
{
int x=read(),y=read();
if(x==y)continue;//相等无效
inse(x,y);inse(y,x);
}
memset(dfn,0,sizeof(dfn));
memset(a,0,sizeof(a));
memset(b,0,sizeof(b));f=0;
for(int i=1;i<=n;i++)if(!dfn[i])root=i,tarjan(i);
//如果这个图不连通就这样
for(int i=1;i<=f;i++)//枚举每一个点双的数量
{
int o=0,l=0;
for(int j=1;a[i][j];j++){if(b[a[i][j]])o++;l++;}//如果是割点o++,l计算点双里点的总个数
if(!o)ans1+=2,ans2*=l*(l-1)/2;
if(o==1)ans2*=(l-1),ans1+=1;
}
printf("Case %d: %d %lld\n",T,ans1,ans2);
}
}