-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathMaxContinuousSeriesof1s.cpp
52 lines (43 loc) · 1.08 KB
/
MaxContinuousSeriesof1s.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
/*
You are given with an array of 1s and 0s. And you are given with an integer M, which signifies number of flips allowed.
Find the position of zeros which when flipped will produce maximum continuous series of 1s.
For this problem, return the indices of maximum continuous series of 1s in order.
Example:
Input :
Array = {1 1 0 1 1 0 0 1 1 1 }
M = 1
Output :
[0, 1, 2, 3, 4]
If there are multiple possible solutions, return the sequence which has the minimum start index.
LINK: https://www.interviewbit.com/problems/max-continuous-series-of-1s/
*/
vector<int> Solution::maxone(vector<int> &A, int B)
{
int l=0,r=0,n=A.size();
int zcnt = 0;
int mxcnt=0,ind=0;
while(r<n)
{
if(zcnt<=B)
{
if(A[r]==0)
zcnt++;
r++;
}
if(zcnt>B)
{
if(A[l]==0)
zcnt--;
l++;
}
if((r-l)>mxcnt)
{
mxcnt = r-l;
ind = l;
}
}
vector<int> v;
for(int i=0;i<mxcnt;i++)
v.push_back(ind+i);
return v;
}