Maximum Product Subarray by Traverse Over Every Contiguous Subarray

The idea is to traverse over every contiguous subarray, find the product of each of these subarrays and return the maximum product from these results.

Follow the below steps to solve the problem:

  • Run a nested for loop to generate every subarray
    • Calculate the product of elements in the current subarray
  • Return the maximum of these products calculated from the subarrays

Below is the implementation of the above approach:

C++
// C++ program to find Maximum Product Subarray
#include <bits/stdc++.h>
using namespace std;

/* Returns the product of max product subarray.*/
int maxSubarrayProduct(int arr[], int n)
{
    // Initializing result
    int result = arr[0];

    for (int i = 0; i < n; i++) {
        int mul = arr[i];
        // traversing in current subarray
        for (int j = i + 1; j < n; j++) {
            // updating result every time
            // to keep an eye over the maximum product
            result = max(result, mul);
            mul *= arr[j];
        }
        // updating the result for (n-1)th index.
        result = max(result, mul);
    }
    return result;
}

// Driver code
int main()
{
    int arr[] = { 1, -2, -3, 0, 7, -8, -2 };
    int n = sizeof(arr) / sizeof(arr[0]);
    cout << "Maximum Sub array product is "
         << maxSubarrayProduct(arr, n);
    return 0;
}

// This code is contributed by Aditya Kumar (adityakumar129)
C
// C program to find Maximum Product Subarray
#include <stdio.h>

// Find maximum between two numbers.
int max(int num1, int num2)
{
    return (num1 > num2) ? num1 : num2;
}

/* Returns the product of max product subarray.*/
int maxSubarrayProduct(int arr[], int n)
{
    // Initializing result
    int result = arr[0];

    for (int i = 0; i < n; i++) {
        int mul = arr[i];
        // traversing in current subarray
        for (int j = i + 1; j < n; j++) {
            // updating result every time
            // to keep an eye over the maximum product
            result = max(result, mul);
            mul *= arr[j];
        }
        // updating the result for (n-1)th index.
        result = max(result, mul);
    }
    return result;
}

// Driver code
int main()
{
    int arr[] = { 1, -2, -3, 0, 7, -8, -2 };
    int n = sizeof(arr) / sizeof(arr[0]);
    printf("Maximum Sub array product is %d ",
           maxSubarrayProduct(arr, n));
    return 0;
}

// This code is contributed by Aditya Kumar (adityakumar129)
Java
// Java program to find maximum product subarray
import java.io.*;

class GFG {
    /* Returns the product of max product subarray.*/
    static int maxSubarrayProduct(int arr[])
    {
        // Initializing result
        int result = arr[0];
        int n = arr.length;

        for (int i = 0; i < n; i++) {
            int mul = arr[i];
            // traversing in current subarray
            for (int j = i + 1; j < n; j++) {
                // updating result every time to keep an eye
                // over the maximum product
                result = Math.max(result, mul);
                mul *= arr[j];
            }
            // updating the result for (n-1)th index.
            result = Math.max(result, mul);
        }
        return result;
    }

    // Driver Code
    public static void main(String[] args)
    {
        int arr[] = { 1, -2, -3, 0, 7, -8, -2 };
        System.out.println("Maximum Sub array product is "
                           + maxSubarrayProduct(arr));
    }
}

// This code is contributed by Aditya Kumar (adityakumar129)
Python
# Python3 program to find Maximum Product Subarray

# Returns the product of max product subarray.


def maxSubarrayProduct(arr, n):

    # Initializing result
    result = arr[0]

    for i in range(n):

        mul = arr[i]

        # traversing in current subarray
        for j in range(i + 1, n):

            # updating result every time
            # to keep an eye over the maximum product
            result = max(result, mul)
            mul *= arr[j]

        # updating the result for (n-1)th index.
        result = max(result, mul)

    return result


# Driver code
arr = [1, -2, -3, 0, 7, -8, -2]
n = len(arr)
print("Maximum Sub array product is", maxSubarrayProduct(arr, n))

# This code is contributed by divyeshrabadiya07
C#
// C# program to find maximum product subarray
using System;

class GFG {

    // Returns the product of max product subarray
    static int maxSubarrayProduct(int[] arr)
    {

        // Initializing result
        int result = arr[0];
        int n = arr.Length;

        for (int i = 0; i < n; i++) {
            int mul = arr[i];

            // Traversing in current subarray
            for (int j = i + 1; j < n; j++) {

                // Updating result every time
                // to keep an eye over the
                // maximum product
                result = Math.Max(result, mul);
                mul *= arr[j];
            }

            // Updating the result for (n-1)th index
            result = Math.Max(result, mul);
        }
        return result;
    }

    // Driver Code
    public static void Main(String[] args)
    {
        int[] arr = { 1, -2, -3, 0, 7, -8, -2 };

        Console.Write("Maximum Sub array product is "
                      + maxSubarrayProduct(arr));
    }
}

// This code is contributed by shivanisinghss2110
Javascript
<script>

// Javascript program to find Maximum Product Subarray

/* Returns the product of max product subarray.*/
function maxSubarrayProduct(arr, n)
{
    // Initializing result
    let result = arr[0];

    for (let i = 0; i < n; i++) 
    {
        let mul = arr[i];
        // traversing in current subarray
        for (let j = i + 1; j < n; j++) 
        {
            // updating result every time
            // to keep an eye over the maximum product
            result = Math.max(result, mul);
            mul *= arr[j];
        }
        // updating the result for (n-1)th index.
        result = Math.max(result, mul);
    }
    return result;
}

// Driver code

    let arr = [ 1, -2, -3, 0, 7, -8, -2 ];
    let n = arr.length;
    document.write("Maximum Sub array product is "
        + maxSubarrayProduct(arr, n));
    

// This code is contributed by Mayank Tyagi

</script>

Time Complexity: O(N2)
Auxiliary Space: O(1)

Maximum Product Subarray

Given an array that contains both positive and negative integers, the task is to find the product of the maximum product subarray. 

Examples:

Input: arr[] = {6, -3, -10, 0, 2}
Output:  180
Explanation: The subarray is {6, -3, -10}

Input: arr[] = {-1, -3, -10, 0, 60}
Output:   60
Explanation: The subarray is {60}

Similar Reads

Maximum Product Subarray by Traverse Over Every Contiguous Subarray:

The idea is to traverse over every contiguous subarray, find the product of each of these subarrays and return the maximum product from these results....

Maximum Product Subarray using Kadane’s Algorithm

The idea is to use Kadane’s algorithm and maintain 3 variables max_so_far, max_ending_here & min_ending_here. Iterate the indices 0 to N-1 and update the variables such that: max_ending_here = maximum(arr[i], max_ending_here * arr[i], min_ending_here[i]*arr[i])min_ending_here = minimum(arr[i], max_ending_here * arr[i], min_ending_here[i]*arr[i])update the max_so_far with the maximum value for each index.return max_so_far as the result....

Maximum Product Subarray using Traversal From Starting and End of an Array:

We will follow a simple approach that is to traverse and multiply elements and if our value is greater than the previously stored value then store this value in place of the previously stored value. If we encounter “0” then make products of all elements till now equal to 1 because from the next element, we will start a new subarray. But what can be the problem with that? Problem will occur when our array will contain odd no. of negative elements. In that case, we have to reject anyone negative element so that we can even no. of negative elements and their product can be positive. Now since we are considering subarray so we can’t simply reject any one negative element. We have to either reject the first negative element or the last negative element. But if we will traverse from starting then only the last negative element can be rejected and if we traverse from the last then the first negative element can be rejected. So we will traverse from both the end and from both the traversal we will take answer from that traversal only which will give maximum product subarray. So actually we will reject that negative element whose rejection will give us the maximum product’s subarray....

Contact Us