返回介绍

solution / 1200-1299 / 1299.Replace Elements with Greatest Element on Right Side / README_EN

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

1299. Replace Elements with Greatest Element on Right Side

中文文档

Description

Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the last element with -1.

After doing so, return the array.

 

Example 1:

Input: arr = [17,18,5,4,6,1]
Output: [18,6,6,6,1,-1]
Explanation: 
- index 0 --> the greatest element to the right of index 0 is index 1 (18).
- index 1 --> the greatest element to the right of index 1 is index 4 (6).
- index 2 --> the greatest element to the right of index 2 is index 4 (6).
- index 3 --> the greatest element to the right of index 3 is index 4 (6).
- index 4 --> the greatest element to the right of index 4 is index 5 (1).
- index 5 --> there are no elements to the right of index 5, so we put -1.

Example 2:

Input: arr = [400]
Output: [-1]
Explanation: There are no elements to the right of index 0.

 

Constraints:

  • 1 <= arr.length <= 104
  • 1 <= arr[i] <= 105

Solutions

Solution 1

class Solution:
  def replaceElements(self, arr: List[int]) -> List[int]:
    m = -1
    for i in range(len(arr) - 1, -1, -1):
      t = arr[i]
      arr[i] = m
      m = max(m, t)
    return arr
class Solution {
  public int[] replaceElements(int[] arr) {
    for (int i = arr.length - 1, max = -1; i >= 0; --i) {
      int t = arr[i];
      arr[i] = max;
      max = Math.max(max, t);
    }
    return arr;
  }
}

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

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

发布评论

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