• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            HDOJ 1856 More is better

            Problem Description
            Mr Wang wants some boys to help him with a project. Because the project is rather complex, the more boys come, the better it will be. Of course there are certain requirements.

            Mr Wang selected a room big enough to hold the boys. The boy who are not been chosen has to leave the room immediately. There are 10000000 boys in the room numbered from 1 to 10000000 at the very beginning. After Mr Wang's selection any two of them who are still in this room should be friends (direct or indirect), or there is only one boy left. Given all the direct friend-pairs, you should decide the best way.
             


             

            Input
            The first line of the input contains an integer n (0 ≤ n ≤ 100 000) - the number of direct friend-pairs. The following n lines each contains a pair of numbers A and B separated by a single space that suggests A and B are direct friends. (A ≠ B, 1 ≤ A, B ≤ 10000000)
             


             

            Output
            The output in one line contains exactly one integer equals to the maximum number of boys Mr Wang may keep.
             


             

            Sample Input
            4
            1 2
            3 4
            5 6
            1 6
            4
            1 2
            3 4
            5 6
            7 8
             


             

            Sample Output
            4
            2
            
            Hint
            A and B are friends(direct or indirect), B and C are friends(direct or indirect), then A and C are also friends(indirect). In the first sample {1,2,5,6} is the result. In the second sample {1,2},{3,4},{5,6},{7,8} are four kinds of answers.
                這題的意思很簡(jiǎn)單,要求最多有多少個(gè)點(diǎn)是連通的,可用并查集或者搜索。我的做法是dfs+鄰接表,第一次用vector模擬了下鄰接表,感覺(jué)效果還可以,要是STL的效率能再高點(diǎn),就完美了。(但是這是不可能的)
             1 #include <iostream>
             2 #include <vector>
             3 using namespace std;
             4 
             5 vector< vector<int> > map;
             6 int n,ans,cnt;
             7 bool visited[100001];
             8 
             9 void dfs(int u){
            10     visited[u]=true;
            11     for(int i=0;i<map[u].size();i++)
            12         if(!visited[map[u][i]])
            13             cnt++,dfs(map[u][i]);
            14 }
            15 int main(){
            16     int u,v,i,m;
            17     while(scanf("%d",&n)!=EOF){
            18         map.clear();
            19         map.resize(100001);
            20         memset(visited,false,sizeof(visited));
            21         for(m=i=0;i<n;i++){
            22             scanf("%d %d",&u,&v);
            23             m=m>? m:u;
            24             m=m>? m:v;
            25             map[u].push_back(v),map[v].push_back(u);
            26         }
            27         for(ans=i=1;i<=m;i++){
            28             if(!visited[i])
            29                 cnt=1,dfs(i);
            30             ans=ans>cnt ? ans:cnt;
            31         }
            32         printf("%d\n",ans);
            33     }
            34     return 0;
            35 }

            posted on 2009-04-27 16:34 極限定律 閱讀(472) 評(píng)論(0)  編輯 收藏 引用 所屬分類: ACM/ICPC

            <2009年6月>
            31123456
            78910111213
            14151617181920
            21222324252627
            2829301234
            567891011

            導(dǎo)航

            統(tǒng)計(jì)

            常用鏈接

            留言簿(10)

            隨筆分類

            隨筆檔案

            友情鏈接

            搜索

            最新評(píng)論

            閱讀排行榜

            評(píng)論排行榜

            亚洲狠狠久久综合一区77777| 国产三级精品久久| 亚洲精品乱码久久久久久蜜桃不卡 | 久久综合香蕉国产蜜臀AV| 久久久女人与动物群交毛片| 久久人人爽人人爽人人片AV不 | 中文字幕亚洲综合久久| 合区精品久久久中文字幕一区| 精品久久久久久国产| 狠狠人妻久久久久久综合蜜桃| 亚洲精品无码久久久久| 久久亚洲国产精品五月天婷| 韩国免费A级毛片久久| 欧美精品国产综合久久| 国产成人综合久久久久久| 人妻无码αv中文字幕久久琪琪布| 国产精品日韩深夜福利久久| 色综合久久久久无码专区| 久久这里有精品| 久久久精品久久久久久| 999久久久国产精品| 久久99国产综合精品女同| 精品久久亚洲中文无码| 天天影视色香欲综合久久| 久久精品国产一区二区三区 | 久久精品国产亚洲一区二区| 久久ZYZ资源站无码中文动漫| 色综合久久久久无码专区| 东方aⅴ免费观看久久av| 久久久久久伊人高潮影院| 亚洲中文字幕伊人久久无码| 久久一区二区免费播放| 久久伊人精品青青草原日本| 久久久久久一区国产精品| 精品水蜜桃久久久久久久| 青青青国产精品国产精品久久久久| 久久精品亚洲中文字幕无码麻豆 | 久久九九久精品国产| 国产高潮国产高潮久久久91 | 精产国品久久一二三产区区别 | 一本久久综合亚洲鲁鲁五月天亚洲欧美一区二区 |