返回介绍

solution / 0900-0999 / 0962.Maximum Width Ramp / README_EN

发布于 2024-06-17 01:03:32 字数 3625 浏览 0 评论 0 收藏 0

962. Maximum Width Ramp

中文文档

Description

A ramp in an integer array nums is a pair (i, j) for which i < j and nums[i] <= nums[j]. The width of such a ramp is j - i.

Given an integer array nums, return _the maximum width of a ramp in _nums. If there is no ramp in nums, return 0.

 

Example 1:

Input: nums = [6,0,8,2,1,5]
Output: 4
Explanation: The maximum width ramp is achieved at (i, j) = (1, 5): nums[1] = 0 and nums[5] = 5.

Example 2:

Input: nums = [9,8,1,0,1,9,4,0,4,1]
Output: 7
Explanation: The maximum width ramp is achieved at (i, j) = (2, 9): nums[2] = 1 and nums[9] = 1.

 

Constraints:

  • 2 <= nums.length <= 5 * 104
  • 0 <= nums[i] <= 5 * 104

Solutions

Solution 1

class Solution:
  def maxWidthRamp(self, nums: List[int]) -> int:
    stk = []
    for i, v in enumerate(nums):
      if not stk or nums[stk[-1]] > v:
        stk.append(i)
    ans = 0
    for i in range(len(nums) - 1, -1, -1):
      while stk and nums[stk[-1]] <= nums[i]:
        ans = max(ans, i - stk.pop())
      if not stk:
        break
    return ans
class Solution {
  public int maxWidthRamp(int[] nums) {
    int n = nums.length;
    Deque<Integer> stk = new ArrayDeque<>();
    for (int i = 0; i < n; ++i) {
      if (stk.isEmpty() || nums[stk.peek()] > nums[i]) {
        stk.push(i);
      }
    }
    int ans = 0;
    for (int i = n - 1; i >= 0; --i) {
      while (!stk.isEmpty() && nums[stk.peek()] <= nums[i]) {
        ans = Math.max(ans, i - stk.pop());
      }
      if (stk.isEmpty()) {
        break;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int maxWidthRamp(vector<int>& nums) {
    int n = nums.size();
    stack<int> stk;
    for (int i = 0; i < n; ++i) {
      if (stk.empty() || nums[stk.top()] > nums[i]) stk.push(i);
    }
    int ans = 0;
    for (int i = n - 1; i; --i) {
      while (!stk.empty() && nums[stk.top()] <= nums[i]) {
        ans = max(ans, i - stk.top());
        stk.pop();
      }
      if (stk.empty()) break;
    }
    return ans;
  }
};
func maxWidthRamp(nums []int) int {
  n := len(nums)
  stk := []int{}
  for i, v := range nums {
    if len(stk) == 0 || nums[stk[len(stk)-1]] > v {
      stk = append(stk, i)
    }
  }
  ans := 0
  for i := n - 1; i >= 0; i-- {
    for len(stk) > 0 && nums[stk[len(stk)-1]] <= nums[i] {
      ans = max(ans, i-stk[len(stk)-1])
      stk = stk[:len(stk)-1]
    }
    if len(stk) == 0 {
      break
    }
  }
  return ans
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文