Score : $300$ points
A sequence $a_1,a_2,... ,a_n$ is said to be /\/\/\/ when the following conditions are satisfied:
You are given a sequence $v_1,v_2,...,v_n$ whose length is even. We would like to make this sequence /\/\/\/ by replacing some of its elements. Find the minimum number of elements that needs to be replaced.
Input is given from Standard Input in the following format:
$n$ $v_1$ $v_2$ $...$ $v_n$
Print the minimum number of elements that needs to be replaced.
4 3 1 3 2
1
The sequence $3,1,3,2$ is not /\/\/\/, but we can make it /\/\/\/ by replacing one of its elements: for example, replace the fourth element to make it $3,1,3,1$.
6 105 119 105 119 105 119
0
The sequence $105,119,105,119,105,119$ is /\/\/\/.
4 1 1 1 1
2
The elements of the sequence $1,1,1,1$ are all the same, so it is not /\/\/\/.