Premium Only Content
2914. Minimum Number of Changes to Make Binary String Beautiful
You are given a 0-indexed binary string s having an even length.
A string is beautiful if it's possible to partition it into one or more substrings such that:
Each substring has an even length.
Each substring contains only 1's or only 0's.
You can change any character in s to 0 or 1.
Return the minimum number of changes required to make the string s beautiful.
Example 1:
Input: s = "1001"
Output: 2
Explanation: We change s[1] to 1 and s[3] to 0 to get string "1100".
It can be seen that the string "1100" is beautiful because we can partition it into "11|00".
It can be proven that 2 is the minimum number of changes needed to make the string beautiful.
Example 2:
Input: s = "10"
Output: 1
Explanation: We change s[1] to 1 to get string "11".
It can be seen that the string "11" is beautiful because we can partition it into "11".
It can be proven that 1 is the minimum number of changes needed to make the string beautiful.
Example 3:
Input: s = "0000"
Output: 0
Explanation: We don't need to make any changes as the string "0000" is beautiful already.
Constraints:
2 <= s.length <= 105
s has an even length.
s[i] is either '0' or '1'.
class Solution {
public:
int minChanges(string s) {
int cnt=0;
int n = s.size();
for(int i=1; i<n; i += 2){
if(s[i-1] != s[i])
cnt++;
}
return cnt;
}
};
-
1:31:56
Michael Franzese
16 hours agoWill NBA do anything about their Gambling Problems?
97.5K18 -
57:26
X22 Report
5 hours agoMr & Mrs X - The Food Industry Is Trying To Pull A Fast One On RFK Jr (MAHA), This Will Fail - EP 14
70.2K40 -
2:01:08
LFA TV
1 day agoTHE RUMBLE RUNDOWN LIVE @9AM EST
129K11 -
1:28:14
On Call with Dr. Mary Talley Bowden
3 hours agoI came for my wife.
9.33K5 -
1:06:36
Wendy Bell Radio
8 hours agoPet Talk With The Pet Doc
44.4K24 -
30:58
SouthernbelleReacts
2 days ago $5.58 earnedWe Didn’t Expect That Ending… ‘Welcome to Derry’ S1 E1 Reaction
24.4K8 -
13:51
True Crime | Unsolved Cases | Mysterious Stories
5 days ago $14.14 earned7 Real Life Heroes Caught on Camera (Remastered Audio)
40.7K9 -
LIVE
Total Horse Channel
14 hours ago2025 IRCHA Derby & Horse Show - November 1st
144 watching -
4:19
PistonPop-TV
6 days ago $5.78 earnedThe 4E-FTE: Toyota’s Smallest Turbo Monster
36.6K -
43:07
WanderingWithWine
6 days ago $3.20 earned5 Dreamy Italian Houses You Can Own Now! Homes for Sale in Italy
27.5K9