当前位置:   article > 正文

leetcode之最少操作使数组递增(C++)_最小替换使得数组递增

最小替换使得数组递增

参考链接

  1. https://leetcode-cn.com/problems/minimum-operations-to-make-the-array-increasing/

题目描述

给你一个整数数组 nums (下标从 0 开始)。每一次操作中,你可以选择数组中一个元素,并将它增加 1 。

比方说,如果 nums = [1,2,3] ,你可以选择增加 nums[1] 得到 nums = [1,3,3] 。
请你返回使 nums 严格递增的最少操作次数。

我们称数组 nums 是严格递增的,当它满足对于所有的 0 <= i < nums.length - 1 都有 nums[i] < nums[i+1] 。一个长度为 1 的数组是严格递增的一种特殊情况。
在这里插入图片描述

解题思路

从左往右遍历数组,如果当前元素不大于前一个元素,则把它补全到前一个元素值加1的大小,并把这些操作数加到总操作数中。

代码

class Solution {
public:
    int minOperations(vector<int>& nums) {
        int res = 0;
        for (int i = 1; i < nums.size(); i ++)
        {
            if (nums[i] <= nums[i - 1])
            {
                res += nums[i - 1] - nums[i] + 1;
                nums[i] = nums[i - 1] + 1;
            }
        }
        return res;
    }
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/847000
推荐阅读
相关标签
  

闽ICP备14008679号