Open In App

Find element at given index after given range reversals

Improve
Improve
Like Article
Like
Save
Share
Report

An array consisting of N elements is given. There are several reversals we do in unique ranges[L..R]. The task is to print the element at given index.

Examples: 

Input : 
arr[] : 10 20 30 40 50
ranges[] = {{1, 4}, {0, 2}}
Query Index = 1
Output : 50
Explanation :
Reverse range[1..4] : 10 50 40 30 20
Reverse range[0..2] : 40 50 10 30 20
So we have 50 at index 1

The Brute Force approach would be to actually reverse a range of elements and answer the queries afterward.

Efficient Method: If we observe, the reversal of range[L..R] will result as follows : 
The index will become right + left – index
By doing this, we can compute the index easily. 

Implementation:

C++




// Program to find index of an element after
// given range reversals.
#include <bits/stdc++.h>
using namespace std;
 
// Function to compute the element at query index
int answer(int arr[], int ranges[][2], int reversals,
           int index)
{
    for (int i = reversals - 1; i >= 0; i--) {
        // Range[left...right]
        int left = ranges[i][0], right = ranges[i][1];
 
        // If doesn't satisfy, reversal won't
        // have any effect
        if (left <= index && right >= index)
            index = right + left - index;
    }
 
    // Returning element at modified index
    return arr[index];
}
 
// Driver
int main()
{
    int arr[] = { 10, 20, 30, 40, 50 };
 
    // reversals
    int reversals = 2;
    int ranges[reversals][2] = { { 1, 4 }, { 0, 2 } };
 
    int index = 1;
    cout << answer(arr, ranges, reversals, index);
 
    return 0;
}


Java




// Program to find index of an element
// after given range reversals.
import java.util.Arrays;
 
class GFG {
    // Function to compute the element at
    // query index
    static int answer(int[] arr, int[][] ranges,
                      int reversals, int index)
    {
        for (int i = reversals - 1; i >= 0; i--) {
            // Range[left...right]
            int left = ranges[i][0],
                right = ranges[i][1];
 
            // If doesn't satisfy, reversal
            // won't have any effect
            if (left <= index && right >= index)
                index = right + left - index;
        }
 
        // Returning element at modified index
        return arr[index];
    }
 
    // Driver code
    public static void main(String[] args)
    {
 
        int[] arr = { 10, 20, 30, 40, 50 };
 
        // reversals
        int reversals = 2;
        int[][] ranges = { { 1, 4 }, { 0, 2 } };
 
        int index = 1;
        System.out.println(answer(arr, ranges,
                                  reversals, index));
    }
}
 
/* This code is contributed by Mr. Somesh Awasthi */


Python3




# Program to find index of an element
# after given range reversals.
 
# Function to compute the element
# at query index
def answer(arr, ranges, reversals, index):
    i = reversals - 1
    while(i >= 0):
         
        # Range[left...right]
        left = ranges[i][0]
        right = ranges[i][1]
 
        # If doesn't satisfy, reversal won't
        # have any effect
        if (left <= index and right >= index):
            index = right + left - index
     
        i -= 1
     
    # Returning element at modified index
    return arr[index]
 
# Driver Code
if __name__ == '__main__':
    arr = [10, 20, 30, 40, 50]
 
    # reversals
    reversals = 2
    ranges = [ [ 1, 4 ], [ 0, 2 ] ]
 
    index = 1
    print(answer(arr, ranges,
                 reversals, index))
 
# This code is contributed by
# Surendra_Gangwar


C#




// C# program to find index of an element
// after given range reversals.
using System;
 
class GFG {
     
    // Function to compute the element at
    // query index
    static int answer(int[] arr, int[, ] ranges,
                       int reversals, int index)
    {
        for (int i = reversals - 1; i >= 0; i--)
        {
             
            // Range[left...right]
            int left = ranges[i, 0],
                right = ranges[i, 1];
 
            // If doesn't satisfy, reversal
            // won't have any effect
            if (left <= index && right >= index)
                index = right + left - index;
        }
 
        // Returning element at modified index
        return arr[index];
    }
 
    // Driver code
    public static void Main()
    {
 
        int[] arr = { 10, 20, 30, 40, 50 };
 
        // reversals
        int reversals = 2;
        int[, ] ranges = { { 1, 4 }, { 0, 2 } };
 
        int index = 1;
        Console.WriteLine(answer(arr, ranges,
                                reversals, index));
    }
}
 
// This code is contributed by vt_m.


Javascript





PHP





Output

50





Optimized solution

We can start by applying all the reversals to the array in the order they are given. To do this efficiently, we can use a helper function to reverse a given range of elements in the array. After applying all the reversals, we can answer the queries directly by accessing the element at the given index.

Algorithm

First define function reverseRange(arr, L, R) that takes an array arr such that
a.Two indices L and R as input.
If L < R, THAN swap the elements at indices L and R in the array arr.
After that Increment L and decrement R.
Define a function applyReversals(arr, ranges)
For each pair of indices (L, R) in ranges, call the reverseRange function with arguments (arr, L, R).
Define a function getElementAtIndex(arr, index)
Return the element of arr at index index.
Initialize an array arr and a list of ranges ranges.
Call the applyReversals and getElementAtIndex function
Assign the result to variable result.
Get result as output.

Implementation of above program

C++





Java





Python





C#





Javascript





Output

50





 Time complexity  O(N*M), where N is the length of the input array arr and M is the number of ranges in the input ranges. 

 Space complexity is O(1),as it does not use any additional memory. 

This article is contributed by Rohit Thapliyal.  



Last Updated : 29 Oct, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads