2874. Maximum Value of an Ordered Triplet II


  • You are given a 0-indexed integer array nums.
  • Return the maximum value over all triplets of indices (i, j, k) such that i < j < k. If all such triplets have a negative value, return 0.
  • The value of a triplet of indices (i, j, k) is equal to (nums[i] - nums[j]) * nums[k].

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.

Method 1

【O(n) time | O(1) space】
package Leetcode.Array;

/**
 * @author zhengxingxing
 * @date 2025/04/03
 */
public class MaximumValueOfAnOrderedTripletII {

    public static long maximumTripletValue(int[] nums) {
        long ans = 0;                // Stores maximum triplet value
        int maxDiff = 0;            // Tracks maximum difference between any two previous elements
        int preMax = 0;             // Keeps track of maximum element seen so far

        // Iterate through each element in array
        for (int x: nums) {
            // Update maximum triplet value using current element as nums[k]
            ans = Math.max(ans, (long)maxDiff * x);

            // Update maximum difference considering current element as nums[j]
            maxDiff = Math.max(maxDiff, preMax - x);

            // Update maximum value seen so far (potential nums[i])
            preMax = Math.max(preMax, x);
        }
        return ans;
    }

    public static void main(String[] args) {
        // Test cases array with example inputs
        int[][] testCases = {
                {12, 6, 1, 2, 7},    // Expected output: 77  ( ( 12-1)*7)
                {1, 10, 3, 4, 19},   // Expected output: 133 ( ( 10-3)*19)
                {1, 2, 3}            // Expected output: 0   (no valid positive value possible)
        };

        // Run all test cases and print results
        for (int i = 0; i < testCases.length; i++) {
            long result = maximumTripletValue(testCases[i]);
            System.out.println("Test case " + (i + 1) + " result: " + result);
        }
    }
}




Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • 2367. Number of Arithmetic Triplets
  • 1123. Lowest Common Ancestor of Deepest Leaves
  • 2873. Maximum Value of an Ordered Triplet I
  • 2140. Solving Questions With Brainpower
  • 2278. Percentage of Letter in String