Skip to main content

2873 - Maximum Value of an Ordered Triplet I (Easy)

https://leetcode.com/problems/maximum-value-of-an-ordered-triplet-i

Problem Statement

You are given a 0-indexed integer array nums.

Return the maximum value over all triplets of indices (i,j,k)(i, j, k) such that i<j<ki < j < k. If all such triplets have a negative value, return 00.

The value of a triplet of indices (i,j,k)(i, j, k) is equal to (nums[i]nums[j])nums[k](nums[i] - nums[j]) * nums[k].

Examples

Example 1

Input:  nums = [12,6,1,2,7]
Output: 77

Explanation:

The value of the triplet (0, 2, 4) is (nums[0] - nums[2]) * nums[4] = 77. It can be shown that there are no ordered triplets of indices with a value greater than 77.

Example 2

Input: nums = [1,10,3,4,19]
Output: 133

Explanation:

The value of the triplet (1, 2, 4) is (nums[1] - nums[2]) * nums[4] = 133. It can be shown that there are no ordered triplets of indices with a value greater than 133.

Example 3

Input: nums = [1,2,3]
Output: 0

Explanation:

The only ordered triplet of indices (0, 1, 2) has a negative value of (nums[0] - nums[1]) * nums[2] = -3. Hence, the answer would be 0.

Constraints

  • 3<=nums.length<=1003 <= nums.length <= 100
  • 1<=nums[i]<=1061 <= nums[i] <= 10^6

Approach 1: Brute Force

Since nn is small, the simplest way is to brute force the solution by enumerating all possible triplets using three nested loops.

Time complexity is O(n3)O(n ^ 3) as we need three nested loops.

Space comlexity is O(1)O(1).

Written by @wkw
# O(n ^ 3)
class Solution:
def maximumTripletValue(self, nums: List[int]) -> int:
n = len(nums)
res = float('-inf')
# guarantees that indices are i < j < k
for i in range(n):
for j in range(i + 1, n):
for k in range(j + 1, n):
# get the max value of (nums[i] - nums[j]) * nums[k]
res = max(res, (nums[i] - nums[j]) * nums[k])
# if all such triplets have a negative value, return 0.
return res if res >= 0 else 0

Approach 2: Greedy

This problem can be also solved in O(n)O(n). When we are at an element xx, we consider the candidate for different position. Let imxi_{mx} be the maximum of nums[i]nums[i] and dmxd_{mx} be the maximum of the value of the diff nums[i]nums[j]nums[i] - nums[j]. At a point, we consider

  • xx as nums[k]nums[k], we can maximize the answer resres with dmxxd_{mx} * x.
  • xx as nums[j]nums[j], we can maximize the difference dmxd_{mx} with imxxi_{mx} - x.
  • xx as nums[i]nums[i], we can maximize imxi_{mx} with ii.

Time complexity is O(n)O(n)

Space comlexity is O(1)O(1).

Written by @wkw
# O(n)
class Solution:
def maximumTripletValue(self, nums: List[int]) -> int:
res, i_mx, d_mx = 0, 0, 0
for x in nums:
res = max(res, d_mx * x) # x as nums[k]
# maximize (nums[i] - nums[j])
d_mx = max(d_mx, i_mx - x) # x as nums[j]
# maximize nums[i]
i_mx = max(i_mx, x) # x as nums[i]
return res