[Swift]LeetCode330. 按要求补齐数组 | Patching Array
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10260867.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Given a sorted positive integer array nums and an integer n, add/patch elements to the array such that any number in range [1, n]
inclusive can be formed by the sum of some elements in the array. Return the minimum number of patches required.
Example 1:
[1,3]
6
[1], [3], [1,3]
1, 3, 4
2
[1], [2], [3], [1,3], [2,3], [1,2,3]
1, 2, 3, 4, 5, 6
[1, 6]
1
Example 2:
[1,5,10]
20
[2, 4]
Example 3:
[1,2,2]
5
给定一个已排序的正整数数组 nums,和一个正整数 n 。从 [1, n]
区间内选取任意个数字补充到 nums 中,使得 [1, n]
区间内的任何数字都可以用 nums 中某几个数字的和来表示。请输出满足上述要求的最少需要补充的数字个数。
示例 1:
[1,3]
6
[1], [3], [1,3]
1, 3, 4
2
[1], [2], [3], [1,3], [2,3], [1,2,3]
1, 2, 3, 4, 5, 6
[1, 6]
示例 2:
[1,5,10]
20
[2, 4]
示例 3:
[1,2,2]
5
52ms
1 class Solution { 2 func minPatches(_ nums: [Int], _ n: Int) -> Int { 3 4 var miss = 1 5 var res = 0 6 var i = 0 7 let l = nums.count 8 while miss <= n { 9 if i < l && nums[i] <= miss { 10 miss += nums[i] 11 i+=1 12 }else { 13 miss <<= 1 14 res += 1 15 } 16 } 17 return res 18 } 19 }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了