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;
}
};
-
11:04
Nate The Lawyer
3 days ago $3.10 earnedJudge, Mayor & 13 Democrats Arrested In Massive Mail-In Voter Fraud Scandal
7.97K30 -
50:15
daniellesmithab
1 day agoKick-Starting Careers for Young Albertans
8.44K -
39:01
Stephen Gardner
16 hours ago🔥This Will Leave You FURIOUS... What’s Really Going On?
62.8K127 -
19:33
DeVory Darkins
18 hours ago $10.20 earnedBREAKING: Charlie Kirk's shooter in custody after making chilling confession
33.7K147 -
2:12:43
TimcastIRL
11 hours agoErika Kirk Addresses Public After Charlie Kirk Assassination, Live Coverage | Timcast IRL
416K413 -
30:59
The Charlie Kirk Show
11 hours agoCharlie Kirk's beloved wife, Mrs. Erika Kirk addresses the Nation.
567K1.66K -
1:53:28
Man in America
19 hours agoLIVE: Assassin Arrested? Civil War? Are We Being Played?? | LET'S TALK
114K156 -
2:10:33
Badlands Media
16 hours agoOnlyLands Ep. 24: Processing Tragedy, Cancel Culture, and the Next Spark
77.4K30 -
2:27:53
TheSaltyCracker
11 hours agoGot Him ReeEEStream 9-12-25
296K403 -
52:11
Sarah Westall
13 hours agoBread and Circus Keeps you Financially Ignorant – Its Better for the Elites w/ Chris Russo
78.8K8