A subarray is called alternating if any two consecutive numbers in it have opposite signs (i.e. one of them should be negative, whereas the other should be positive).
Given an array of n integers. For each index i, we need to find the length if the longest alternating subarray starting at i.
Examples:
Input : a[] = {1, -5, 1, -5}
Output : For index 0, {1, -5, 1, -5} = 4
index 1, {-5, 1, -5} = 3
index 2, {1, -5} = 2
index 3, {-5} = 1.
Input :a[] = {-5, -1, -1, 2, -2, -3}
Output : index 0 = 1,
index 1 = 1,
index 2 = 3,
index 3 = 2,
index 4 = 1,
index 5 = 1,
A Naive approach is to use two loops in which we traverse the whole array starting from every index i (0 to n-1) and calculate the length of the alternating subarray.
Time Complexity: O(n2).
Efficient Approach:
Observe that when a[i] and a[i+1] have opposite signs, count[i] will be 1 more than count[i+1]. Otherwise when they have same sign count[i] will be 1.
We use Dynamic Programming here.
C++
// CPP program to find longest alternating // subarray starting from every index. #include <bits/stdc++.h> using namespace std; void longestAlternating(int arr[], int n) { int count[n]; // Fill count[] from end. count[n - 1] = 1; for (int i = n - 2; i >= 0; i--) { if (arr[i] * arr[i + 1] < 0) count[i] = count[i + 1] + 1; else count[i] = 1; } // Print result for (int i = 0; i < n; i++) cout << count[i] << " "; } // Driver code int main() { int a[] = { -5, -1, -1, 2, -2, -3 }; int n = sizeof(a) / sizeof(a[0]); longestAlternating(a, n); return 0; } |
Java
// Java program to find longest alternating // subarray starting from every index. import java.util.*; class Longest{ public static void longestAlternating(int arr[], int n) { int[] count = new int[n]; // Fill count[] from end. count[n - 1] = 1; for (int i = n - 2; i >= 0; i--) { if (arr[i] * arr[i + 1] < 0) count[i] = count[i + 1] + 1; else count[i] = 1; } // Print result for (int i = 0; i < n; i++) System.out.print(count[i] + " "); } // driver program public static void main(String[] args) { int a[] = { -5, -1, -1, 2, -2, -3 }; int n = 6; longestAlternating(a, n); } } // This code is contributed by rishabh_jain |
Python3
# Python3 program to find longest alternating # subarray starting from every index. def longestAlternating(arr, n) : count = [None] * n # Fill count[] from end. count[n - 1] = 1 i = n - 2 while i >= 0 : if (arr[i] * arr[i + 1] < 0) : count[i] = count[i + 1] + 1 else : count[i] = 1; i = i - 1 i = 0 # Print result while i < n : print (count[i], end = " ") i = i + 1 # Driver Code a = [ -5, -1, -1, 2, -2, -3 ] n = len(a) longestAlternating(a, n); # This code is contributed by rishabh_jain |
C#
//C# program to find longest alternating // subarray starting from every index. using System; class Longest { public static void longestAlternating(int []arr, int n) { int[] count = new int[n]; // Fill count[] from end. count[n - 1] = 1; for (int i = n - 2; i >= 0; i--) { if (arr[i] * arr[i + 1] < 0) count[i] = count[i + 1] + 1; else count[i] = 1; } // Print result for (int i = 0; i < n; i++) Console.Write(count[i] + " "); } // Driver program public static void Main() { int []a = { -5, -1, -1, 2, -2, -3 }; int n = 6; longestAlternating(a, n); } } // This code is contributed by vt_m |
PHP
<?php // PHP program to find longest alternating // subarray starting from every index. function longestAlternating( $arr, $n) { $count = array(); // Fill count[] from end. $count[$n - 1] = 1; for ( $i = $n - 2; $i >= 0; $i--) { if ($arr[$i] * $arr[$i + 1] < 0) $count[$i] = $count[$i + 1] + 1; else $count[$i] = 1; } // Print result for ( $i = 0; $i < $n; $i++) echo $count[$i] , " "; } // Driver code $a = array( -5, -1, -1, 2, -2, -3 ); $n =count($a); longestAlternating($a, $n); // This code is contributed by anuj_67. ?> |
Output:
1 1 3 2 1 1
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.
Recommended Posts:
- Longest alternating sub-array starting from every index in a Binary Array
- Longest alternating subsequence in terms of positive and negative integers
- Rearrange array in alternating positive & negative items with O(1) extra space | Set 1
- Rearrange array in alternating positive & negative items with O(1) extra space | Set 2
- Only integer with positive value in positive negative value in array
- Length of the longest alternating subarray
- Length of the longest alternating even odd subarray
- Find starting index for every occurrence of given array B in array A using Z-Algorithm
- Longest Subarray of non-negative Integers
- Length of longest subarray with negative product
- Longest Subarray having strictly positive XOR
- Length of longest subarray with positive product
- Rearrange positive and negative numbers in O(n) time and O(1) extra space
- Check if array elements are consecutive in O(n) time and O(1) space (Handles Both Positive and negative numbers)
- Segregating negative and positive maintaining order and O(1) space
- Move all negative numbers to beginning and positive to end with constant extra space
- Positive elements at even and negative at odd positions (Relative order not maintained)
- Rearrange positive and negative numbers using inbuilt sort function
- Lambda expression in Python to rearrange positive and negative numbers
- Make three non-empty sets with negative, positive and 0 products
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : vt_m

