Towers Without a Valley - Google Top Interview Questions


Problem Statement :


You are given a list of integers nums. Consider a list of integers A such that A[i] ≤ nums[i]. Also, there are no j and k such that there exist j < i < k and A[j] > A[i] and A[i] < A[k].

Return the maximum possible sum of A.

Constraints

1 ≤ n ≤ 100,000 where n is the length of nums

Example 1

Input

nums = [10, 6, 8]

Output

22

Explanation

We can create A = [10, 6, 6].



Example 2

Input

nums = [4, 5, 1, 1, 5]

Output

12

Explanation

We can create A = [4, 5, 1, 1, 1].



Solution :



title-img




                        Solution in C++ :

vector<int> calc(vector<int> a) {
    int i, n = a.size(), sum = 0;
    vector<int> ret(n, 0);
    vector<pair<int, int>> st;
    for (i = 0; i < n; i++) {
        int count = 1;
        sum += a[i];
        while (st.size() && st.back().first >= a[i]) {
            int num = st.back().first, freq = st.back().second;
            count += freq;
            sum -= (num - a[i]) * freq;
            st.pop_back();
        }
        st.emplace_back(a[i], count);
        ret[i] = sum;
    }
    return ret;
}

int solve(vector<int>& nums) {
    vector<int> left = calc(nums);
    reverse(nums.begin(), nums.end());
    vector<int> right = calc(nums);
    int ret = 0, i, n = nums.size();
    for (i = 0; i < n; i++) ret = max(ret, left[i] + right[n - i - 1] - nums[n - 1 - i]);
    return ret;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[] nums) {
        int n = nums.length;
        int[] left = getIncreasingSum(nums);
        int[] right = reverse(getIncreasingSum(reverse(nums)));
        int max = Integer.MIN_VALUE;
        for (int i = 0; i < n; i++) {
            max = Math.max(max, left[i] + right[i] - nums[i]);
        }

        return max;
    }

    int[] reverse(int[] nums) {
        int n = nums.length;
        int[] res = new int[n];
        for (int i = 0; i < n; i++) res[n - 1 - i] = nums[i];
        return res;
    }
    int[] getIncreasingSum(int[] nums) {
        int n = nums.length;
        int[] res = new int[n];
        Deque<Integer> dq = new ArrayDeque();
        int total = 0;
        for (int i = 0; i < nums.length; i++) {
            while (!dq.isEmpty() && nums[dq.peekLast()] > nums[i]) {
                int idx = dq.pollLast();
                int count = !dq.isEmpty() ? idx - dq.peekLast() : idx + 1;
                int diff = nums[idx] - nums[i];
                total = total - (diff * count);
            }
            total += nums[i];
            dq.addLast(i);
            res[i] = total;
        }
        return res;
    }
}
                    


                        Solution in Python : 
                            
# Solves "half" of the problem:
# For each prefix `P` of `nums`, find the increasing sequence bounded by `P`
# with the maximum sum, and return that sum.
def increasing_prefix_sums(nums):
    # Store the current best increasing sequence, in the form (value, number of occurrences)
    stack = []
    current_sum = 0  # always equal to sum(x * c for x in stack)

    ans = []

    for x in nums:
        count = 1

        # We need to include `x` in our sequence. Values to the left may need to be reduced.
        while stack and stack[-1][0] > x:
            # Anything greater than `x` gets clamped down to `x`.
            # Since `stack` is increasing we only need to look at its tail.
            # This is similar to the min-queue algorithm.
            current_sum -= stack[-1][0] * stack[-1][1]
            count += stack[-1][1]
            stack.pop()

        stack.append((x, count))
        current_sum += x * count
        ans.append(current_sum)

    return ans


class Solution:
    def solve(self, nums):
        left = increasing_prefix_sums(nums)
        right = reversed(increasing_prefix_sums(reversed(nums)))
        # left[i] + right[i] overcounts by nums[i], so subtract that out
        return max(l + r - x for l, r, x in zip(left, right, nums))
                    


View More Similar Problems

Array Pairs

Consider an array of n integers, A = [ a1, a2, . . . . an] . Find and print the total number of (i , j) pairs such that ai * aj <= max(ai, ai+1, . . . aj) where i < j. Input Format The first line contains an integer, n , denoting the number of elements in the array. The second line consists of n space-separated integers describing the respective values of a1, a2 , . . . an .

View Solution →

Self Balancing Tree

An AVL tree (Georgy Adelson-Velsky and Landis' tree, named after the inventors) is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node differ by at most one; if at any time they differ by more than one, rebalancing is done to restore this property. We define balance factor for each node as : balanceFactor = height(left subtree) - height(righ

View Solution →

Array and simple queries

Given two numbers N and M. N indicates the number of elements in the array A[](1-indexed) and M indicates number of queries. You need to perform two types of queries on the array A[] . You are given queries. Queries can be of two types, type 1 and type 2. Type 1 queries are represented as 1 i j : Modify the given array by removing elements from i to j and adding them to the front. Ty

View Solution →

Median Updates

The median M of numbers is defined as the middle number after sorting them in order if M is odd. Or it is the average of the middle two numbers if M is even. You start with an empty number list. Then, you can add numbers to the list, or remove existing numbers from it. After each add or remove operation, output the median. Input: The first line is an integer, N , that indicates the number o

View Solution →

Maximum Element

You have an empty sequence, and you will be given N queries. Each query is one of these three types: 1 x -Push the element x into the stack. 2 -Delete the element present at the top of the stack. 3 -Print the maximum element in the stack. Input Format The first line of input contains an integer, N . The next N lines each contain an above mentioned query. (It is guaranteed that each

View Solution →

Balanced Brackets

A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are considered to be a matched pair if the an opening bracket (i.e., (, [, or {) occurs to the left of a closing bracket (i.e., ), ], or }) of the exact same type. There are three types of matched pairs of brackets: [], {}, and (). A matching pair of brackets is not balanced if the set of bra

View Solution →