Given an array arr[] of N integers, the task is to find the maximum length of sub-array consisting of the same type of element on both halves of the sub-array. Also, the elements on both halves differ from each other.

Examples:

Input:_ arr[] = {2, 3, 4, 4, 5, 5, 6, 7, 8, 10}_

_Output: _4

Explanation:

_{2, 3}, {3, 4}, {4, 4, 5, 5}, {5, 6}, etc, are the valid sub-arrays where both halves have only one type of element. _

{4, 4, 5, 5} is the sub-array having maximum length.

_Hence, the output is 4. _

Input:_ arr[] = {1, 7, 7, 10, 10, 7, 7, 7, 8, 8, 8, 9}_

_Output: _6

Explanation:

_{1, 7}, {7, 7, 10, 10}, {7, 7, 7, 8, 8, 8}, {8, 9}, etc, are the valid sub-arrays where both halves have only one type of element. _

{7, 7, 7, 8, 8, 8} is the sub-array having maximum length.

_Hence, the output is 6. _

Naive Approach: The naive idea is to generate all possible subarray and check any subarray with maximum length can be divided into two halves such that all the elements in both the halves are the same.

Time Complexity:_ O(N3)_

Auxiliary Space:_ O(1)_

**Efficient Approach: **To solve this problem the idea is to use the concept of Prefix Sum. Follow the steps below to solve the problem:

  1. Traverse the array from the start in the forward direction and store the continuous occurrence of an integer for each index in an array forward[].
  2. Similarly, traverse the array from the end in the reverse direction and store the continuous occurrence of an integer for each index in an array backward[].
  3. Store the maximum of **_min(forward[i], backward[i+1])*2, _**for all the index where arr[i]!=arr[i+1].
  4. Print the value obtained in the above step.

Below is the implementation of the above approach:

  • C++
  • Python3

// C++ program for the above approach

#include <bits/stdc++.h>

**using** **namespace** std;

// Function that finds the maximum

// length of the sub-array that

// contains equal element on both

// halves of sub-array

**void** maxLengthSubArray(``**int** A[], **int** N)

{

// To store continuous occurence

// of the element

**int** forward[N], backward[N];

// To store continuous

// forward occurence

**for** (``**int** i = 0; i < N; i++) {

**if** (i == 0

|| A[i] != A[i - 1]) {

forward[i] = 1;

}

**else**

forward[i] = forward[i - 1] + 1;

}

// To store continuous

// backward occurence

**for** (``**int** i = N - 1; i >= 0; i--) {

**if** (i == N - 1

|| A[i] != A[i + 1]) {

backward[i] = 1;

}

**else**

backward[i] = backward[i + 1] + 1;

}

// To store the maximum length

**int** ans = 0;

// Find maximum length

**for** (``**int** i = 0; i < N - 1; i++) {

**if** (A[i] != A[i + 1])

ans = max(ans,

min(forward[i],

backward[i + 1])

* 2);

}

// Print the result

cout << ans;

}

// Driver Code

**int** main()

{

// Given array

**int** arr[] = { 1, 2, 3, 4, 4,

4, 6, 6, 6, 9 };

// Size of the array

**int** N = **sizeof**``(arr) / **sizeof**``(arr[0]);

// Function Call

maxLengthSubArray(arr, N);

**return** 0;

}

Output:

6

_Time Complexity: _O(N)

Auxiliary Space:_ O(N)_

Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.

#arrays #greedy #mathematical #prefix-sum #subarray #subarray-sum

Maximum length of subarray consisting of same type of element
1.15 GEEK