Skip to content

Commit e5e3308

Browse files
committed
New Problem Solution - "Minimum Changes To Make Alternating Binary String"
1 parent b7adf90 commit e5e3308

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ LeetCode
99

1010
| # | Title | Solution | Difficulty |
1111
|---| ----- | -------- | ---------- |
12+
|1758|[Minimum Changes To Make Alternating Binary String](https://leetcode.com/problems/minimum-changes-to-make-alternating-binary-string/) | [C++](./algorithms/cpp/minimumChangesToMakeAlternatingBinaryString/MinimumChangesToMakeAlternatingBinaryString.cpp)|Easy|
1213
|1754|[Largest Merge Of Two Strings](https://leetcode.com/problems/largest-merge-of-two-strings/) | [C++](./algorithms/cpp/largestMergeOfTwoStrings/LargestMergeOfTwoStrings.cpp)|Medium|
1314
|1753|[Maximum Score From Removing Stones](https://leetcode.com/problems/maximum-score-from-removing-stones/) | [C++](./algorithms/cpp/maximumScoreFromRemovingStones/MaximumScoreFromRemovingStones.cpp)|Medium|
1415
|1752|[Check if Array Is Sorted and Rotated](https://leetcode.com/problems/check-if-array-is-sorted-and-rotated/) | [C++](./algorithms/cpp/checkIfArrayIsSortedAndRotated/CheckIfArrayIsSortedAndRotated.cpp)|Easy|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Source : https://leetcode.com/problems/minimum-changes-to-make-alternating-binary-string/
2+
// Author : Hao Chen
3+
// Date : 2021-02-14
4+
5+
/*****************************************************************************************************
6+
*
7+
* You are given a string s consisting only of the characters '0' and '1'. In one operation, you can
8+
* change any '0' to '1' or vice versa.
9+
*
10+
* The string is called alternating if no two adjacent characters are equal. For example, the string
11+
* "010" is alternating, while the string "0100" is not.
12+
*
13+
* Return the minimum number of operations needed to make s alternating.
14+
*
15+
* Example 1:
16+
*
17+
* Input: s = "0100"
18+
* Output: 1
19+
* Explanation: If you change the last character to '1', s will be "0101", which is alternating.
20+
*
21+
* Example 2:
22+
*
23+
* Input: s = "10"
24+
* Output: 0
25+
* Explanation: s is already alternating.
26+
*
27+
* Example 3:
28+
*
29+
* Input: s = "1111"
30+
* Output: 2
31+
* Explanation: You need two operations to reach "0101" or "1010".
32+
*
33+
* Constraints:
34+
*
35+
* 1 <= s.length <= 104
36+
* s[i] is either '0' or '1'.
37+
******************************************************************************************************/
38+
39+
class Solution {
40+
public:
41+
int minOperations(string s) {
42+
int start_with_zero = 0;
43+
int start_with_one = 0;
44+
for (int i=0; i<s.size(); i++){
45+
if (i % 2 == 0) {
46+
s[i] == '1' ? start_with_zero++ : start_with_one++;
47+
}else{
48+
s[i] == '0' ? start_with_zero++ : start_with_one++;
49+
}
50+
}
51+
return std::min(start_with_zero, start_with_one);
52+
}
53+
};

0 commit comments

Comments
 (0)