Problem Statement
Min Number of Flips | Practice | GeeksforGeeks
Pattern:
Solution
public int minFlips(String S) {
// Code here
int countZero = 0, countOne = 0;
// zero-start
boolean flag = false;
for(char ch : S.toCharArray()) {
if(!flag && ch != '0') countZero++;
else if(flag && ch != '1') countZero++;
flag = !flag;
}
// one-start
flag = true;
for(char ch : S.toCharArray()) {
if(flag && ch != '1') countOne++;
else if(!flag && ch != '0') countOne++;
flag = !flag;
}
return Math.min(countZero, countOne);
}
TC : SC :
Notes
- There are only 2 arrangements of alternating bits possible for any given string One starting with zero and other starting with one. Simply find the one that requires the least number of flips