You are given an array A of size 2 * N consisting of positive integers, where N is an odd number. You can construct an array B from A as follows, B[i] = max(A[2 * i - 1], A[2 * i]). Consider all permutations of A. Print any one of them which maximises the median of B
Explanation
The larger elements we have in the array B, the larger will be its median. Since, array B has n elements only, we would like to have the largest n elements of A somehow, go into the array B. Let us assume we have a black box which permutes array A in some manner such that the largest n elements go into array B. Now, what will be the median of array B in such a case? It will be simply the middle element once the array B is sorted.
Now, let us describe the black box now. We see that elements of B are from adjacent elements from A. i.e. they are independent of each other in their selection. Thus, we simply put all the highest n elements in either odd or even positions in array A. This will ensure that are always selected into array B. So, the only requirement is to sort the array A to get the highest n elements. The sorting can be done using mergesort, randomised quick-sort or any inbuilt sort function available.
The above is just one of the methods to construct the array and solve the problem. Multiple solutions to the problem might exist. Feel free to discuss them below.
@divik544 You sorted the initial array, but you forgot to permute it! Remember, you need max elements in each adjacent pair of elements.
If the array is a0, a1, a2, a4, … a(2n-1) after sorting.
A valid permutation would be:
a0, an, a1, a(n+1), … a(n-1), a(2n-1)
after which the B array becomes
an, a(n+1), a(n+2), … a(2n-1) and the median would be a[(3n-1)/2] that is, [(n) + (2n-1)]/2.
Here’s my solution
Your answer is correct, but the array required to give that answer is is incorrect, after sorting your array would look lie
a[0],a[1],a[2],a[3],…a[2*n-1]
but the array which gives required answer will look like
a[0],a[n],a[1],a[n+1]…a[n-1=,a[2*n-1].
@adiaspirant, we just saving some tying time by these statements and nothing else. The ifndef statement just helps us to execute the code directly from sublime text without going to the terminal again and again. The ifndef statement will only work when the “ONLINE_JUDGE” flag is defined while compilation which can be seen on the specific websites.