짬뽕얼큰하게의 맨땅에 헤딩 :: '2025/04/03 글 목록

'2025/04/03'에 해당되는 글 2건

Leetcode Problem:

Summary

  • Find the maximum value over all triplets of indices (i, j, k) such that i < j < k in the given array nums.

Approach

  • The approach used is to use a stack to store the elements of the array
  • We iterate over the array and for each element, we update the maximum distance between the smallest and largest elements in the stack
  • We also update the maximum value by multiplying the maximum distance with the current element
  • If the current element is greater than the top of the stack, we remove elements from the stack until the top of the stack is less than or equal to the current element
  • Finally, we return the maximum value found.

Complexity

  • O(n log n) due to the sorting operation inside the while loop

Explanation

  • The solution code uses a stack to store the elements of the array
  • We iterate over the array and for each element, we update the maximum distance between the smallest and largest elements in the stack
  • We also update the maximum value by multiplying the maximum distance with the current element
  • If the current element is greater than the top of the stack, we remove elements from the stack until the top of the stack is less than or equal to the current element
  • This is done to ensure that the stack always contains the smallest and largest elements seen so far
  • Finally, we return the maximum value found.

Solution Code:


class Solution {
public:

    long long maximumTripletValue(vector& nums) {
        long long ans = 0;
        int maxDist = 0;
        vector st;

        for(int i = 0; i < nums.size(); i++){
            if(st.size() >= 2){
                maxDist = max(maxDist, st[0] - st.back());
            }
            ans = max(ans, (long long)maxDist * nums[i]);
            while(!st.empty() && st.back() < nums[i]){
                st.pop_back();
            }
            st.push_back(nums[i]);
        }
        return ans;
    }
};

'알고리즘' 카테고리의 다른 글

Maximum Value of an Ordered Triplet I  (0) 2025.04.03
Solving Questions With Brainpower  (0) 2025.04.01
Put Marbles in Bags  (0) 2025.04.01
Partition Labels  (0) 2025.03.30
Apply Operations to Maximize Score  (0) 2025.03.29
블로그 이미지

짬뽕얼큰하게

,

Leetcode Problem:

Summary

  • The problem requires finding the maximum value of a triplet of indices (i, j, k) in a given array such that i < j < k, and the value of the triplet is (nums[i] - nums[j]) * nums[k].

Approach

  • The approach used is a recursive combination of elements from the array to form triplets, and the maximum value is updated accordingly.

Complexity

  • O(n^3) due to the recursive combination of elements and the use of a vector to store selected elements.

Explanation

  • The solution uses a recursive function combi() to generate all possible triplets of indices and calculate their values
  • The function takes the current index, depth, and a vector of selected elements as parameters
  • If the depth is 3, the function updates the maximum value if the current triplet has a greater value
  • Otherwise, it recursively calls itself for the next index and increments the depth
  • The function also uses backtracking to explore all possible combinations of elements by popping the last element from the vector and restoring the previous state.

Solution Code:


class Solution {
public:
    long long ans = 0;
    void combi(vector&nums, int cur, int depth, vector& selected){
        if(depth == 3){
            ans = max(ans, (selected[0] - selected[1])*selected[2]);
            return;
        }
        for(int i = cur + 1; i < nums.size(); i++){
            selected.push_back(nums[i]);
            combi(nums, i, depth + 1, selected);
            selected.pop_back();
        }
    }
    long long maximumTripletValue(vector& nums) {
        vector selected;
        combi(nums,-1, 0, selected);
        return ans;
    }
};

'알고리즘' 카테고리의 다른 글

Maximum Value of an Ordered Triplet II  (0) 2025.04.03
Solving Questions With Brainpower  (0) 2025.04.01
Put Marbles in Bags  (0) 2025.04.01
Partition Labels  (0) 2025.03.30
Apply Operations to Maximize Score  (0) 2025.03.29
블로그 이미지

짬뽕얼큰하게

,