Codeforces Round #254 (Div. 二) B (445B)DZY Loves Chemistry

Codeforces Round #254 (Div. 2) B (445B)DZY Loves Chemistry
DZY Loves Chemistry
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

DZY loves chemistry, and he enjoys mixing chemicals.

DZY has n chemicals, and m pairs of them will react. He wants to pour these chemicals into a test tube, and he needs to pour them in one by one, in any order.

Let's consider the danger of a test tube. Danger of an empty test tube is 1. And every time when DZY pours a chemical, if there are already one or more chemicals in the test tube that can react with it, the danger of the test tube will be multiplied by 2. Otherwise the danger remains as it is.

Find the maximum possible danger after pouring all the chemicals one by one in optimal order.

Input

The first line contains two space-separated integers n and m Codeforces Round #254 (Div. 二) B (445B)DZY Loves Chemistry.

Each of the next m lines contains two space-separated integers xi and yi (1 ≤ xi < yi ≤ n). These integers mean that the chemical xi will react with the chemical yi. Each pair of chemicals will appear at most once in the input.

Consider all the chemicals numbered from 1 to n in some order.

Output

Print a single integer — the maximum possible danger.

Sample test(s)
input
1 0
output
1
input
2 1
1 2
output
2
input
3 2
1 2
2 3
output
4
Note

In the first sample, there's only one way to pour, and the danger won't increase.

In the second sample, no matter we pour the 1st chemical first, or pour the 2nd chemical first, the answer is always 2.

In the third sample, there are four ways to achieve the maximum possible danger: 2-1-3, 2-3-1, 1-2-3 and 3-2-1 (that is the numbers of the chemicals in order of pouring).

推理可得最终结果为2的(n-可分组合数)次方。

问题是怎么求出可分组合数,深搜即可。


AC代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#define M 100005
#define ll long long
using namespace std;

int a,b,c[205][205],vis[205];
int n,m;

void dfs(int x)
{
    int i;
    vis[x]=1;
    for(i=1;i<=n;i++)
    {
        if(!vis[i]&&c[x][i])
            dfs(i);
    }
}

int main()
{

    int i,j;
    int sum,ans=0;
    cin>>n>>m;
    memset(c,0,sizeof c);
    memset(vis,0,sizeof vis);
    for(i=0;i<m;i++)
        {
            cin>>a>>b;
            c[a][b]=1;
            c[b][a]=1;//将a,b关联,可以用容器,但我觉得没必要
        }
    if(m==0)
        cout<<"1"<<endl;
    else{
        for(j=1;j<=n;j++)
        {
            if(!vis[j])
            {dfs(j);ans++;}//从一点搜起,记录组合数
        }
        cout<<(1LL<<(n-ans))<<endl;
    }

    return 0;
}