문제
Farmer John has cows (), conveniently labeled . There are () pairs of friends among these cows.
A group of cows is called a "friendship group" if every cow in the group is reachable from every other cow in the group via a chain of friendships that lies solely within the group (friendships connecting to cows outside the group have no impact). The "strength" of a friendship group is the minimum number of friends of any cow in the group within the group times the number of cows in the group (again, note that friendships connecting to cows outside the group do not count for this definition).
Please find the maximum strength over all friendship groups.
입력
The first line contains and .
The next lines contain two integers and denoting that cows and are friends (, ). No unordered pair of cows appears more than once.
출력
One line containing the maximum strength over all friendship groups.
예제 입력 1
8 10
1 2
1 3
1 4
2 3
2 4
3 4
1 5
2 6
3 7
4 8
예제 출력 1
12
점수
For , test case satisfies . For , test case satisfies . For , test case satisfies no additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인