Problem C
A Cappella Recording
Geoffry is preparing an a cappella composition where he sings the entire song by himself.
Each note of the song has a pitch between
Compute the minimum number of times that Geoffry can record himself singing the song and each note is sung in at least one of the recordings.
Input
The first line contains two integers
Each of the next
Output
Output a single integer, which is the minimum number of times that Geoffry can record himself singing the song and each note is sung in at least one of the recordings.
Sample Input 1 | Sample Output 1 |
---|---|
6 0 3 1 4 1 5 9 |
5 |
Sample Input 2 | Sample Output 2 |
---|---|
6 1 3 1 4 1 5 9 |
4 |
Sample Input 3 | Sample Output 3 |
---|---|
6 2 3 1 4 1 5 9 |
3 |
Sample Input 4 | Sample Output 4 |
---|---|
6 4 3 1 4 1 5 9 |
2 |
Sample Input 5 | Sample Output 5 |
---|---|
6 8 3 1 4 1 5 9 |
1 |