Problem D UVA 10608

來源:互聯網
上載者:User

標籤:des   style   blog   http   color   os   strong   io   

Problem IFRIENDS

 

There is a town with N citizens. It is known that some pairs of people are friends. According to the famous saying that ?The friends of my friends are my friends, too? it follows that if A and B are friends and B and C are friends then A and C are friends, too.

 

Your task is to count how many people there are in the largest group of friends.

 

Input

Input consists of several datasets. The first line of the input consists of a line with the number of test cases to follow. The first line of each dataset contains tho numbers N and M, where N is the number of town‘s citizens (1≤N≤30000) and M is the number of pairs of people (0≤M≤500000), which are known to be friends. Each of the following M lines consists of two integers A and B (1≤A≤N, 1≤B≤N, A≠B) which describe that A and B are friends. There could be repetitions among the given pairs.

 

Output

The output for each test case should contain one number denoting how many people there are in the largest group of friends.

 

Sample Input

Sample Output

2

3 2

1 2

2 3

10 12

1 2

3 1

3 4

5 4

3 5

4 6

5 2

2 1

7 10

1 2

9 10

8 9

3

6

 

Problem source: Bulgarian National Olympiad in Informatics 2003

Problem submitter: Ivaylo Riskov

Problem solution: Ivaylo Riskov

 

又是並查集

比賽的時候看到又混亂了

其實很簡單

 

 1 #include <iostream> 2  3 using namespace std; 4 int fa[30001]; 5 int visit[30001]; 6 int ans,m,n; 7  8 void init() 9 {10     for(int i =0;i<=n;i++)11     {12         fa[i]=i;13         visit[i]=0;14     }15     ans = 0;16 }17 18 int find(int x)19 {20     while(x!=fa[x])21         x = fa[x];22 23     return x;24 }25 26 27 void merge(int x,int y)28 {29     int a = find(x);30     int b = find(y);31     if(a!=b)32     {33         fa[a] = b;34     }35 }36 37 int main()38 {39     cin.sync_with_stdio(false);40     int T;41     cin>>T;42     while(T--)43     {44         cin>>n>>m;45         init();46         while(m--)47         {48             int x,y;49             cin>>x>>y;50             merge(x,y);51         }52 53         for(int i =0;i<=n;i++)54         {55             visit[find(i)]++;56         }57 58         for(int i =0;i<=n;i++)59         {60             ans=ans>visit[i]?ans:visit[i];61         }62         cout<<ans<<endl;63     }64 65     return 0;66 }

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.