forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10. Flip String to Monotone Increasing.cpp
63 lines (50 loc) · 1.43 KB
/
10. Flip String to Monotone Increasing.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
/*
Flip String to Monotone Increasing
==================================
A binary string is monotone increasing if it consists of some number of 0's (possibly none), followed by some number of 1's (also possibly none).
You are given a binary string s. You can flip s[i] changing it from 0 to 1 or from 1 to 0.
Return the minimum number of flips to make s monotone increasing.
Example 1:
Input: s = "00110"
Output: 1
Explanation: We flip the last digit to get 00111.
Example 2:
Input: s = "010110"
Output: 2
Explanation: We flip to get 011111, or alternatively 000111.
Example 3:
Input: s = "00011000"
Output: 2
Explanation: We flip to get 00000000.
Constraints:
1 <= s.length <= 105
s[i] is either '0' or '1'.
*/
class Solution
{
public:
int dfs(string &s, int i, int prev, int memo[100001][2])
{
if (i == s.size())
return 0;
if (memo[i][prev] != -1)
return memo[i][prev];
int ans = INT_MAX;
if (prev == 0)
{
ans = min(ans, (s[i] == '1' ? 1 : 0) + dfs(s, i + 1, 0, memo));
ans = min(ans, (s[i] == '1' ? 0 : 1) + dfs(s, i + 1, 1, memo));
}
else
{
ans = min(ans, (s[i] == '1' ? 0 : 1) + dfs(s, i + 1, 1, memo));
}
return memo[i][prev] = ans;
}
int minFlipsMonoIncr(string s)
{
int memo[100001][2];
memset(memo, -1, sizeof memo);
return dfs(s, 0, 0, memo);
}
};