100 atcoder#ABC177D. [ABC177D] Friends
[ABC177D] Friends
Score : points
Problem Statement
There are persons called Person through Person .
You are given facts that "Person and Person are friends." The same fact may be given multiple times.
If and are friends, and and are friends, then and are also friends. There is no friendship that cannot be derived from the given facts.
Takahashi the evil wants to divide the persons into some number of groups so that every person has no friend in his/her group.
At least how many groups does he need to make?
Constraints
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
5 3
1 2
3 4
5 1
3
Dividing them into three groups such as , , and achieves the goal.
4 10
1 2
2 1
1 2
2 1
1 2
1 3
1 4
2 3
2 4
3 4
4
10 4
3 1
4 1
5 9
2 6
3