926. Flip String to Monotone Increasing
926. Flip String to Monotone Increasing
Description
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:
1 | Input: s = "00110" |
Example 2:
1 | Input: s = "010110" |
Example 3:
1 | Input: s = "00011000" |
Constraints:
1 <= s.length <= 10^5
s[i]
is either'0'
or'1'
.
Hints/Notes
- 2025/04/17 Q2
- preSum
- Leetcode solution
Solution
Language: C++
1 | class Solution { |