시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB78342943.284%

문제

Andi has a network G with N machines and M links; each link connects exactly two different machines. Due to some circumstances, Andi has to make his network “complete”, i.e. every machine is directly linked to every other machine. This means Andy has to add a new link between any pair of machines which are not already directly linked.

In order to accomplish his goal, Andi outsources the work to a company, Go. Go accepts any work order on a network G with a requested integer k, i.e. go(G, k). The way Go works: First, it creates a list L containing all pair of machines which are not yet directly linked. Then, Go evaluates each pair of machines (a, b) from L and create a new link between them if δab ≥ k. Note that δa is the degree of machine a, i.e. the number of links a has at the time of evaluation. Similarly, δb is for machine b.

The problem with Go’s procedure is it evaluates each pair of machines in the order appeared in L. For example, let G be a network with N = 4 machines (machine 1, 2, 3, and 4) and M = 3 links; the links are {(1, 2),(2, 3),(3, 4)}. The degree of each machine before a work order is requested is: δ1 = 1, δ2 = 2, δ3 = 2, δ4 = 1, or simply can be written as [1, 2, 2, 1]. Let say a work order with k = 3 is requested (go(G, 3)).

Consider these two lists:

  • L1 = ((1, 4),(1, 3),(2, 4)).
    • Evaluate (1, 4) and don’t create a new link since δ1 + δ4 = 1 + 1 = 2. The degree is still [1, 2, 2, 1].
    • Evaluate (1, 3) and create a new link since δ1 + δ3 = 1 + 2 = 3. The degree becomes [2, 2, 3, 1].
    • Evaluate (2, 4) and create a new link since δ2 + δ4 = 2 + 1 = 3. The degree becomes [2, 3, 3, 2].

The final result is a network with 5 links, which is not complete as it misses the (1, 4) link.

  • L2 = ((2, 4),(1, 3),(1, 4)).
    • Evaluate (2, 4) and create a new link since δ2 + δ4 = 2 + 1 = 3. The degree becomes [1, 3, 2, 2].
    • Evaluate (1, 3) and create a new link since δ1 + δ3 = 1 + 2 = 3. The degree becomes [2, 3, 3, 2].
    • Evaluate (1, 4) and create a new link since δ1 + δ4 = 2 + 2 = 4. The degree becomes [3, 3, 3, 3].

The final result is a network with 6 links and complete.

As we can see, L2 produces a complete network, while L1 is not.

Ordering a work to Go can be very expensive with lower k, thus, Andi has to make k as high as possible while maintaining the possibility that a complete network can be achieved with k. In other words, Andi wants the highest k such that there exists L such that go(G, k) can produce a complete network, and for any j (j > k), there is no valid L for go(G, j) which can produce a complete network. Your task in this problem is to find such k.

입력

Input begins with a line containing two integers: N M (2 ≤ N ≤ 500; 0 ≤ M < N×(N−1)/2) representing the number of machines and the number existing links, respectively. The machines are numbered from 1 to N. The next M lines, each contains two integers: ai bi (1 ≤ ai < bi ≤ N) representing an existing link connecting machine ai and bi. You are guaranteed that each pair (ai, bi) will appear at most once in the input.

출력

Output contains an integer k in a line, as requested.

예제 입력 1

4 3
1 2
2 3
3 4

예제 출력 1

3

예제 입력 2

5 0

예제 출력 2

0

Andi’s network has no link at all at the beginning. To make his network complete, Andi has to order go(G, 0).

예제 입력 3

5 2
1 2
3 4

예제 출력 3

2