2023-12-24 Daily Challenge

Today I have done leetcode's December LeetCoding Challenge with cpp.

December LeetCoding Challenge 24

Description

Minimum Changes To Make Alternating Binary String

You are given a string s consisting only of the characters '0' and '1'. In one operation, you can change any '0' to '1' or vice versa.

The string is called alternating if no two adjacent characters are equal. For example, the string "010" is alternating, while the string "0100" is not.

Return the minimum number of operations needed to make s alternating.

 

Example 1:

Input: s = "0100"
Output: 1
Explanation: If you change the last character to '1', s will be "0101", which is alternating.

Example 2:

Input: s = "10"
Output: 0
Explanation: s is already alternating.

Example 3:

Input: s = "1111"
Output: 2
Explanation: You need two operations to reach "0101" or "1010".

 

Constraints:

  • 1 <= s.length <= 104
  • s[i] is either '0' or '1'.

Solution

class Solution {
public:
  int minOperations(string s) {
    if(s.length() == 1) return 0;
    int count = 0;
    for(int i = 0; i < s.length(); ++i) {
      if(s[i] == (i & 1) + '0') count += 1;
    }
    return min<int>(count, s.length() - count);
  }
};

// Accepted
// 89/89 cases passed (6 ms)
// Your runtime beats 35.61 % of cpp submissions
// Your memory usage beats 86.65 % of cpp submissions (7.2 MB)