Day 47 Number of Operations to Decrement Target to Zero
Number of Operations to Decrement Target to Zero
题目
1 |
|
题目思路
- 1、滑动窗口题目,数组遍历一次求和,刚好相等则不用减。
- 2、不相等则减去目标值,即为最少需要去除的值,使用双指针滑动,如果大于去除值,则左指针向前滑动,相等则对比之前操作的长度,记录其中最大的移动长度,即为最小的移动区间。
1 |
|
复杂度
时间复杂度:O(n)
空间复杂度:O(1)
Day 47 Number of Operations to Decrement Target to Zero
https://chaggle.github.io/2021/10/26/Leetcode/91-day/day-47/