zoukankan      html  css  js  c++  java
  • Codeforces Round #254 (Div. 2):B. 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 .

    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).


    
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    
    using namespace std;
    
    int main()
    {
        int n, m;
        int x, y;
        int a[105];
        __int64  ans=1;
        scanf("%d%d", &n, &m);
        for(int i=1; i<=n; i++)
            a[i] = i;
        for(int i=0; i<m; i++)
        {
            scanf("%d%d", &x, &y);
            while(a[x] != x)
                x = a[x];
            while(a[y]!=y)
                y = a[y];
            if(x!=y)
                ans*=2;
            a[y] = x;
        }
        printf("%I64d
    ",ans);
        
        return 0;
    }
    



查看全文
  • 相关阅读:
    【web前端优化之图片延迟加载初探】中午不睡,下午崩溃
    【javascript培训第一天】语言基础
    【实战HTML5与CSS3 第一篇】初探水深,美丽的导航,绚丽的图片爆炸!!
    【Google Fusion Tables API 初探】地图与云计算
    【javascript培训第三天】查遗补漏
    一道面试题带来的前端优化——实现星星点评
    【CSS3初探之变形与动画】令人惊叹的CSS3
    【javascript培训第二天】DOM与BOM
    工作了一个星期各位一定累了吧,那我们一起来表单验证一番吧!
    【CSS3初探之背景边框相关】奇葩的与老大吵了一架,奇葩的五分钟offer,奇葩的一天。。。
  • 原文地址:https://www.cnblogs.com/ldxsuanfa/p/10637881.html
  • Copyright © 2011-2022 走看看