Open In App

Sorting array with reverse around middle

Last Updated : 09 Apr, 2023
Comments
Improve
Suggest changes
18 Likes
Like
Report

Consider the given array arr[], we need to find if we can sort array with the given operation. The operation is 

  1. We have to select a subarray from the given array such that the middle element(or elements (in case of even 
    number of elements)) of subarray is also the middle element(or elements (in case of even number of elements)) of 
    the given array. 
  2. Then we have to reverse the selected subarray and place this reversed subarray in the array. 
    We can do the above operation as many times as we want. The task is to find if we can sort array with the given operation. 

Examples:  

Input : arr[] = {1, 6, 3, 4, 5, 2, 7}
Output : Yes
We can choose sub-array[3, 4, 5] on 
reversing this we get [1, 6, 5, 4, 3, 2, 7]
again on selecting [6, 5, 4, 3, 2] and 
reversing this one we get [1, 2, 3, 4, 5, 6, 7] 
which is sorted at last thus it is possible
to sort on multiple reverse operation.

Input : arr[] = {1, 6, 3, 4, 5, 7, 2}
Output : No

One solution is we can rotate each element around the center, which gives two possibilities in the array i.e. the value at index 'i' or the value at index "length - 1 - i". 
If array has n elements then 2^n combinations possible thus running time would be O(2^n).

Another solution can be make copy of the array and sort the copied array. Then compare each element of the sorted array with equivalent element of original array and its mirror image when pivot around center. Sorting the array takes O(n*logn) and 2n comparisons be required thus running time would be O(n*logn).

Implementation:

C++
// CPP program to find possibility to sort
// by multiple subarray reverse operation
#include <bits/stdc++.h>
using namespace std;

bool ifPossible(int arr[], int n)
{
    int cp[n];

    // making the copy of the original array
    copy(arr, arr + n, cp);

    // sorting the copied array
    sort(cp, cp + n);

    for (int i = 0; i < n; i++) {

        // checking mirror image of elements of sorted 
        // copy array and equivalent element of original 
        // array
        if (!(arr[i] == cp[i]) && !(arr[n - 1 - i] == cp[i]))
            return false;
    }

    return true;
}

// driver code
int main()
{
    int arr[] = { 1, 7, 6, 4, 5, 3, 2, 8 };
    int n = sizeof(arr) / sizeof(arr[0]);
    if (ifPossible(arr, n))
       cout << "Yes";
    else
       cout << "No";

    return 0;
}
Java Python 3 C# PHP JavaScript

Output
Yes

Time Complexity: O(n log n), where n is the size of the input array. This is because of the sorting operation performed on the copied array.

Auxiliary Space: O(n), where n is the size of the input array. This is because of the copy of the original array created.


Article Tags :
Practice Tags :

Similar Reads