★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
?微信公众号:山青咏芝(shanqingyongzhi)
?博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
?GitHub地址:https://github.com/strengthen/LeetCode
?原文地址:https://www.cnblogs.com/strengthen/p/11297773.html
?如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
?原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Given an array nums
of integers,a move consists of choosing any element and decreasing it by 1.
An array A
is a zigzag array if either:
A[0] > A[1] < A[2] > A[3] < A[4] > ...
OR,every odd-indexed element is greater than adjacent elements,IE. A[0] < A[1] > A[2] < A[3] > A[4] < ...
Return the minimum number of moves to transform the given array nums
into a zigzag array.
Example 1:
input: nums = [1,2,3]Output: 2Explanation: We can decrease 2 to 0 or 3 to 1.
Example 2:
input: nums = [9,6,1,2]Output: 4
Constraints:
1 <= nums.length <= 1000
1 <= nums[i] <= 1000
给你一个整数数组 nums
,每次 *** 作 会从中选择一个元素并 将该元素的值减少 1。
如果符合下列情况之一,则数组 A
就是 锯齿数组:
A[0] > A[1] < A[2] > A[3] < A[4] > ...
或者,每个奇数索引对应的元素都大于相邻的元素,即 A[0] < A[1] > A[2] < A[3] > A[4] < ...
返回将数组 nums
转换为锯齿数组所需的最小 *** 作次数。
示例 1:
输入:nums = [1,3]输出:2解释:我们可以把 2 递减到 0,或把 3 递减到 1。
示例 2:
输入:nums = [9,2]输出:4
提示:
1 <= nums.length <= 1000
1 <= nums[i] <= 1000
Runtime: 8 ms Memory Usage: 20.8 MB 1 class Solution { 2 func movesTomakezigzag(_ nums: [Int]) -> Int { 3 var n:Int = nums.count 4 var j:Int = 0 5 var s:Int = 0 6 var t:Int = 0 7 for i in strIDe(from:0,to:n,by:2) 8 { 9 j = 010 if i != 011 {12 j = max(j,nums[i]-nums[i-1]+1)13 }14 if i + 1 < n15 {16 j = max(j,nums[i]-nums[i+1]+1)17 }18 s += j19 }20 for i in strIDe(from:1,by:2)21 {22 j = 023 if i != 024 {25 j = max(j,nums[i]-nums[i-1]+1)26 }27 if i + 1 < n28 {29 j = max(j,nums[i]-nums[i+1]+1)30 }31 t += j32 }33 return min(s,t) 34 }35 }总结
以上是内存溢出为你收集整理的[Swift]LeetCode1144. 递减元素使数组呈锯齿状 | Decrease Elements To Make Array Zigzag全部内容,希望文章能够帮你解决[Swift]LeetCode1144. 递减元素使数组呈锯齿状 | Decrease Elements To Make Array Zigzag所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)