传统题 1000ms 256MiB

D - Friends

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

D - Friends

Score : $400$ points

Problem Statement

There are $N$ persons called Person $1$ through Person $N$.

You are given $M$ facts that "Person $A_i$ and Person $B_i$ are friends." The same fact may be given multiple times.

If $X$ and $Y$ are friends, and $Y$ and $Z$ are friends, then $X$ and $Z$ are also friends. There is no friendship that cannot be derived from the $M$ given facts.

Takahashi the evil wants to divide the $N$ 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

  • $2 \leq N \leq 2\times 10^5$
  • $0 \leq M \leq 2\times 10^5$
  • $1\leq A_i,B_i\leq N$
  • $A_i \neq B_i$

Input

Input is given from Standard Input in the following format:

NN MM

A1A_1 B1B_1

\vdots

AMA_M BMB_M

Output

Print the answer.


5 3
1 2
3 4
5 1
3

Dividing them into three groups such as $\{1,3\}$, $\{2,4\}$, and $\{5\}$ 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

2024寒假入门组刷题营(十四)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-14 13:30
结束于
2024-2-14 15:30
持续时间
2 小时
主持人
参赛人数
9