Primitivus
Memory limit: 32 MB
A genetic code of the abstract primitivus (Primitivus recurencis) is a series of natural numbers . A feature of primitivus we call each ordered pair of numbers , which appears successively in the genetic code, i.e. there exists such that , . There are no features in a primitivus' genetic code.
Task
Write a program which:
- reads the list of the features from the standard input,
- computes the length of the shortest genetic code having given features,
- writes the results to the standard output.
Input
In the first line of the standard input one positive integer number is written. It is the number of different features of the primitivus. In each of the following lines there is a pair of natural numbers and separated by a single space, , . A pair is one of the primitivus' features. The features do not repeat in the input file.
Output
Your program should write, in the first and only line of the standard output, exactly one integer number equal to the length of the shortest genetic code of the primitivus, comprising the features from the input.
Example
For the input data:
12
2 3
3 9
9 6
8 5
5 7
7 6
4 5
5 1
1 4
4 2
2 8
8 6
the correct result is:
15
All the features from the sample input are written in the following genetic code: (8, 5, 1, 4, 2, 3, 9, 6, 4, 5, 7, 6, 2, 8, 6).
Task author: Wojciech Rytter.