-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaxConsecutiveOnes.cpp
163 lines (148 loc) · 2.29 KB
/
MaxConsecutiveOnes.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
/*
trivial solution
optimized solution
Solution 1 :-
alwyays record the last occurence of zero,and increase the index
if again the zero is found at j,then your subarray would be prev_occurence
Solution 2 :-
Maintain a sliding window and this window would contain at most one zero,
if another zero is encountered,decrease the size of window until it is valid.
and at every expansion check if its the max Length.
Can also be generalized for at most k zeroes.
Try solving
Max consecutive ones iii - LeetCode 1004
*/
class Solution
{
vector<int> arr;
public:
Solution()
{
}
void fillArray(int temp)
{
arr.push_back(temp);
}
int maxConsecutiveOnes_SlidingWindow(int k)
{
int i = 0;
int j = 0;
int maxLen = 0;
int count = 0;
while(i<=j && j<arr.size())
{
if(arr[j] == 0)
{
++count;
}
if(count > k)
{
while(i<=j)
{
if(arr[i] == 0)
{
--count;
}
++i;
if(count <=k)
{
break;
}
}
}
maxLen = max(maxLen,j-i+1);
++j;
}
return maxLen;
}
int maxConsecutiveOnes()
{
int prev_prev_zeroes = -1;
int prev_zeroes = -1;
int j = 0;
int maxLen = 0;
while(j < arr.size())
{
if(arr[j] == 0)
{
if(prev_prev_zeroes!= -1)
{
// prev_prev_zero+1...j-1
maxLen = max(maxLen,(j-1-(prev_prev_zeroes+1)+1));
}
else
if(prev_zeroes != -1)
{
// prev_zero ... j-1
maxLen = max(maxLen,(j-prev_zeroes));
}
else
{
// j+1
maxLen = max(maxLen,j+1);
}
prev_prev_zeroes = prev_zeroes;
prev_zeroes = j;
}
else
{
if(prev_prev_zeroes != -1)
{
// prev_prev_zero+1..j
maxLen = max(maxLen,j-prev_prev_zeroes);
}
else
if(prev_zeroes != -1)
{
// j + 1
maxLen = max(maxLen,j+1);
}
else
{
// j + 1
maxLen = max(maxLen,j+1);
}
}
++j;
}
return maxLen;
}
};
int main()
{
int test_cases;
cin >> test_cases;
while (test_cases--)
{
Solution s;
int n;
cin >> n;
for(int i=0;i<n;i++)
{
int temp;
cin >> temp;
s.fillArray(temp);
}
cout << s.maxConsecutiveOnes_SlidingWindow(1) << endl;
}
}
/*
Input:-
4
6
0 1 0 1 1 0
10
0 0 1 0 1 1 1 0 1 1
9
1 1 0 1 1 0 1 1 1
8
1 1 1 0 1 1 1 0
Output:-
4
6
6
7
*/