Javatpoint Logo
Javatpoint Logo

How to find the maximum pairwise product in python?

In this article, you will learn that how can you find the maximum pairwise product in python. You can find the maximum pairwise product in python in many ways.

Example 1:

Python program to find the maximum pairwise product in a given list:

Output:

20

Explanation:

This function takes in a list of numbers as its input and returns the maximum pairwise product of any two distinct elements in the list.

The function works by using two nested loops to iterate over all possible pairs of distinct elements in the list. For each pair of elements, the product of the two elements is calculated, and if this product is greater than the current maximum pairwise product, it is updated.

At the end of the loop, the maximum pairwise product is returned.

Note: This function has a time complexity of O(n^2), which means it may not be efficient for very large input lists. There are more efficient algorithms to solve this problem with better time complexity, such as sorting the list and multiplying the largest two elements, but they require additional complexity to handle cases where there may be negative numbers in the list.

Sorting the input list

There is a more efficient approach to finding the maximum pairwise product in Python which has a better time complexity than O(n^2). This approach involves sorting the input list and then multiplying the two largest numbers in the list.

Here is an implementation of this approach:

Output:

20

Explanation:

In this implementation, we first sort the input list in descending order using the built-in sorted function with the reverse=True parameter. After that, we calculate the maximum pairwise product as the product of the first two elements in the sorted list.

This implementation has a time complexity of O(n log n) due to the sorting step, which is much faster than the O(n^2) approach from before. However, it's important to note that this implementation assumes that all the numbers in the list are positive. If there are negative numbers in the list, the sorting approach would not always produce the correct result. In that case, we would need to consider additional cases and conditions to ensure correctness.

Using a single pass over a list:

There is another approach to finding the maximum pairwise product in Python which has a time complexity of O(n) and does not require sorting the input list. This approach involves finding the two largest and most distinct numbers in the list using a single pass over the list.

Code:

Output:

32

Explanation:

In this implementation, we use two variables max1 and max2 to keep track of the two largest and most distinct numbers in the list. We initialize both variables to -1, which assumes that all numbers in the list are non-negative.

After that, we iterate over the list, and for each element numbers[i], we check if it is greater than max1. If it is, we update max2 to max1, and update max1 to numbers[i]. If numbers[i] is not greater than max1, we check if it is greater than max2 and not equal to max1. If it is, we update max2 to numbers[i]. At the end of the loop, we calculate the maximum pairwise product as the product of max1 and max2 and return it.

This implementation has a time complexity of O(n) because it only requires a single pass over the list, which is much faster than the O(n^2) and O(n log n) approaches from before. Additionally, this implementation can handle negative numbers in the list without any additional conditions or complexity.

There is another approach to finding the maximum pairwise product in Python which has a time complexity of O(n) and also does not require sorting the input list. This approach involves keeping track of both the maximum and minimum values seen so far in a single pass over the list.

Here is an implementation of this approach:

Output:

155

Explanation:

In this implementation, we use four variables max1, max2, min1, and min2 to keep track of the maximum and minimum values seen so far in the list. We initialize max1 and max2 to negative infinity, and min1 and min2 to positive infinity.

After that, we iterate over the list, and for each element numbers[i], and we update max1 and max2 if numbers[i] is greater than max1 or greater than max2 and not equal to max1. Similarly, we update min1 and min2 if numbers[i] is less than min1 or less than min2 and not equal to min1. At the end of the loop, we calculate the maximum pairwise product as the maximum of the products max1 * max2 and min1 * min2 and return it.

This implementation also has a time complexity of O(n) because it only requires a single pass over the list, which is much faster than the O(n^2) and O(n log n) approaches from before. Additionally, this implementation can handle both positive and negative numbers in the list without any additional conditions or complexity.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA