Minimum product of maximum and minimum element over all possible subarrays
Last Updated :
20 Mar, 2023
Given an array arr[] consisting of N positive integers, the task is to find the minimum product of maximum and minimum among all possible subarrays.
Examples:
Input: arr[] = {6, 4, 5, 6, 2, 4}
Output: 8
Explanation:
Consider the subarray {2, 4}, the product of minimum and maximum for this subarray is 2*4 = 8, which is minimum among all possible subarrays.
Input: arr[] = {3, 1, 5, 2, 3, 2}
Output: 3
Naive Approach: The simplest approach to solve the given problem is to generate all possible subarrays of the array and find the product of the maximum and minimum of all possible subarrays. After checking for all the subarrays print the minimum of all products obtained.
Time Complexity: O(N2)
Auxiliary Space: O(1)
Efficient Approach: The above approach can also be optimize by using an observation that considering the pair of adjacent elements as an subarray because including any array element may increase our maximum element which result in the maximum product.
Therefore, the idea is to find the minimum of product of all pair of adjacent elements to find the resultant minimum product.
Below is the implementation of above approach:
C++
// C++ program for the above approach
#include <bits/stdc++.h>
using namespace std;
// Function to find the minimum product
// of the minimum and maximum among all
// the possible subarrays
int findMinMax(vector<int>& a)
{
// Stores resultant minimum product
int min_val = 1000000000;
// Traverse the given array arr[]
for (int i = 1; i < a.size(); ++i) {
// Min of product of all two
// pair of consecutive elements
min_val = min(min_val, a[i] * a[i - 1]);
}
// Return the resultant value
return min_val;
}
// Driver Code
int main()
{
vector<int> arr = { 6, 4, 5, 6, 2, 4, 1 };
cout << findMinMax(arr);
return 0;
}
// This code is contributed by rakeshsahni
Java
/*package whatever //do not write package name here */
import java.io.*;
class GFG
{
// Function to find the minimum product
// of the minimum and maximum among all
// the possible subarrays
static int findMinMax(int[] a)
{
// Stores resultant minimum product
int min_val = 1000000000;
// Traverse the given array arr[]
for (int i = 1; i < a.length; ++i) {
// Min of product of all two
// pair of consecutive elements
min_val = Math.min(min_val, a[i] * a[i - 1]);
}
// Return the resultant value
return min_val;
}
// Driver Code
public static void main (String[] args)
{
int[] arr = { 6, 4, 5, 6, 2, 4, 1 };
System.out.println(findMinMax(arr));
}
}
// This code is contributed by maddler.
Python3
# Python program for the above approach
# Function to find the minimum product
# of the minimum and maximum among all
# the possible subarrays
def findMinMax(a):
# Stores resultant minimum product
min_val = 1000000000
# Traverse the given array arr[]
for i in range(1, len(a)):
# Min of product of all two
# pair of consecutive elements
min_val = min(min_val, a[i]*a[i-1])
# Return the resultant value
return min_val
# Driver Code
if __name__ == ("__main__"):
arr = [6, 4, 5, 6, 2, 4, 1]
print(findMinMax(arr))
C#
// C# program for the above approach
using System;
public class GFG
{
// Function to find the minimum product
// of the minimum and maximum among all
// the possible subarrays
static int findMinMax(int[] a)
{
// Stores resultant minimum product
int min_val = 1000000000;
// Traverse the given array arr[]
for (int i = 1; i < a.Length; ++i) {
// Min of product of all two
// pair of consecutive elements
min_val = Math.Min(min_val, a[i] * a[i - 1]);
}
// Return the resultant value
return min_val;
}
// Driver Code
public static void Main (string[] args)
{
int[] arr = { 6, 4, 5, 6, 2, 4, 1 };
Console.WriteLine(findMinMax(arr));
}
}
// This code is contributed by avijitmondal1998.
JavaScript
<script>
// JavaScript Program to implement
// the above approach
// Function to find the minimum product
// of the minimum and maximum among all
// the possible subarrays
function findMinMax( a)
{
// Stores resultant minimum product
let min_val = 1000000000;
// Traverse the given array arr[]
for (let i = 1; i < a.length; ++i) {
// Min of product of all two
// pair of consecutive elements
min_val = Math.min(min_val, a[i] * a[i - 1]);
}
// Return the resultant value
return min_val;
}
// Driver Code
let arr = [6, 4, 5, 6, 2, 4, 1];
document.write( findMinMax(arr))
// This code is contributed by Potta Lokesh
</script>
Time Complexity: O(N)
Auxiliary Space: O(1)
Similar Reads
Minimize difference between maximum and minimum element of all possible subarrays Given an array arr[ ] of size N, the task is to find the minimum difference between maximum and minimum elements of all possible sized subarrays of arr[ ]. Examples: Input: arr[] = { 5, 14, 7, 10 } Output: 3Explanation: {7, 10} is the subarray having max element = 10 & min element = 7, and their
5 min read
Sum of minimum and maximum elements of all subarrays of size k. Given an array of both positive and negative integers, the task is to compute sum of minimum and maximum elements of all sub-array of size k.Examples: Input : arr[] = {2, 5, -1, 7, -3, -1, -2} K = 4Output : 18Explanation : Subarrays of size 4 are : {2, 5, -1, 7}, min + max = -1 + 7 = 6 {5, -1, 7, -3
15+ min read
Minimum common element in subarrays of all possible lengths Given an array arr[] consisting of N integers from the range [1, N]( repetition allowed ), the task is to find the minimum common element for each possible subarray length. If no such element exists for any particular length of the subarray, then print -1. Examples: Input: arr[] = {1, 3, 4, 5, 6, 7}
11 min read
Minimum and Maximum of all subarrays of size K using Map Given an array arr[] of N integers and an integer K, the task is to find the minimum and maximum of all subarrays of size K. Examples: Input: arr[] = {2, -2, 3, -9, -5, -8}, K = 4 Output: -9 3 -9 3 -9 3 Explanation: Below are the subarray of size 4 and minimum and maximum value of each subarray: 1.
9 min read
Minimum common element in all subarrays of size K Given an array arr[] consisting of N distinct integers and a positive integer K, the task is to find the minimum element that occurs in all subarrays of size K. If no such element exists, then print "-1". Examples: Input: arr[] = {1, 2, 3, 4, 5}, K = 4Output: 2Explanation:The subarrays of size 4 are
7 min read