-
Notifications
You must be signed in to change notification settings - Fork 56
/
Flip.cpp
83 lines (55 loc) · 1.84 KB
/
Flip.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
/*
https://www.interviewbit.com/problems/flip/
You are given a binary string(i.e. with characters 0 and 1) S consisting of characters S1, S2, …, SN. In a single operation, you can
choose two indices L and R such that 1 ≤ L ≤ R ≤ N and flip the characters SL, SL+1, …, SR. By flipping, we mean change character 0
to 1 and vice-versa.
Your aim is to perform ATMOST one operation such that in final string number of 1s is maximised. If you don’t want to perform the
operation, return an empty array. Else, return an array consisting of two elements denoting L and R. If there are multiple solutions,
return the lexicographically smallest pair of L and R.
Notes:
Pair (a, b) is lexicographically smaller than pair (c, d) if a < c or, if a == c and b < d.
For example,
S = 010
Pair of [L, R] | Final string
_______________|_____________
[1 1] | 110
[1 2] | 100
[1 3] | 101
[2 2] | 000
[2 3] | 001
We see that two pairs [1, 1] and [1, 3] give same number of 1s in final string. So, we return [1, 1].
Another example,
If S = 111
No operation can give us more than three 1s in final string. So, we return empty array [].
*/
vector<int> Solution::flip(string A)
{
int l=A.length(), zero=0, ones=0;
vector<int> v(l), res;
for(int i=0;i<l;i++)
{
//if(A[i]=='0') zero++;
//else ones++;
if(A[i]=='1') v[i]=-1;
else v[i]=1;
}
int ms=0, me=0, st=INT_MAX, e=INT_MAX, k=0;
for(int i=0; i<l; i++)
{
if(me+v[i]<0)
{
k=i+1;
me=0;
}
else me+=v[i];
if(me>ms)
{
ms=me;
st=k;
e=i;
}
}
if(st==INT_MAX) return vector<int>();
res.push_back(st+1); res.push_back(e+1);
return res;
}