-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1004. Max Consecutive Ones III.cpp
56 lines (38 loc) · 1.26 KB
/
1004. Max Consecutive Ones III.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Given a binary array nums and an integer k,
return the maximum number of consecutive 1's in the array if you can flip at most k 0's.
Example 1:
Input: nums = [1,1,1,0,0,0,1,1,1,1,0], k = 2
Output: 6
Explanation: [1,1,1,0,0,(0),1,1,1,1,(0)]
Numbers inside () were flipped from 0 to 1.
Example 2:
Input: nums = [0,0,1,1,0,0,1,1,1,0,1,1,0,0,0,1,1,1,1], k = 3
Output: 10
Explanation: [0,0,1,1,(1),(1),1,1,1,(1),1,1,0,0,0,1,1,1,1]
Numbers inside () were flipped from 0 to 1.
Constraints:
1 <= nums.length <= 10^5
nums[i] is either 0 or 1.
0 <= k <= nums.length
********************************************************************************
# Approach 1:
class Solution {
public:
int longestOnes(vector<int>& nums, int k) {
int res = 0;
int start = 0, end = 0; // start and end of the sliding window
while (end < nums.size()) {
if (nums[end] == 0 && k > 0) {
k--;
} else if (nums[end] == 0 && k == 0){
while (nums[start] != 0) start++;
start++; // to next element, no need to update k as it always remains 0
}
res = max(res, end - start + 1);
end++;
}
return res;
}
};
TC -> O(n), n is the size of nums
SC -> O(1)