TopCoder

User's AC Ratio

NaN% (0/0)

Submission's AC Ratio

NaN% (0/0)

Tags

Description

The airline company NCPC Airways has flights to and from n cities, numbered from 1 to n, around the entire world. However, they only have n-1 different flights (operating in both directions), so in order to travel between any two cities you might have to take several flights. In fact, since the management has made sure that it's possible to travel between any pair of cities, there is exactly one set of flights a passenger have to take in order to travel between two cities (assuming you want to use the same airline).


Recently many of NCPC Airways frequent flyers have complained that they have had to change flights too often to get to their final destination. Since NCPC Airways doesn't want to loose their customers to other airline companies, but still keep the nice property of their flights, they have decided to cancel one of their current flights and replace it with
another flight. Help the company by writing a program which finds the best flight to cancel and the best new flight to add so that the maximum number of flight changes a passenger might have to make when travelling between any pair of cities in which NCPC Airways operates is minimized.


The input will be constructed so that it is always possible to improve the maximum number of flight changes needed.

Input Format

The first line in the input contains the integer n (4 ≤ n ≤ 2500), the number of cities NCPC Airways operates in. Then follow n-1 lines specifying the flights. Each flight is given as a pair of cities a and b (1 ≤ a, b ≤ n).

Output Format

The output should consist of one line only that contains an integer, the minimum number of flights needed to take when travelling between any pair of cities after changing one of the flights.

NOTE: this is DIFFERENT from the orignal problem requirement!!! only the minimum - maximum number of flights needed to take is to be output!!

Sample Input 1

4
1 2
2 3
3 4

14
1 2
1 8
2 3
2 4
8 9
8 10
8 11
4 5
4 6
4 7
10 12
10 13
13 14

Sample Output 1

2
5

Hints

Problem Source

Migrated from old NTUJ.

NCPC 2009

Subtasks

No. Testdata Range Score

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 10000 65536 200