VOOZH about

URL: https://www.geeksforgeeks.org/dsa/minimum-replacements-in-a-string-to-make-adjacent-characters-unequal/

⇱ Minimum replacements in a string to make adjacent characters unequal - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Minimum replacements in a string to make adjacent characters unequal

Last Updated : 15 Jul, 2025

Given a lowercase character string str of size N. In one operation any character can be changed into some other character. The task is to find the minimum number of operations such that no two adjacent characters are equal.
Examples:

Input: Str = "caaab" 
Output:
Explanation: 
Change the second a to any other character, let's change it to b. So the string becomes "cabab". and no two adjacent characters are equal. So minimum number of operations is 1.
Input: Str = "xxxxxxx" 
Output:
Explanation: 
Replace 'x' at index 1, 3 and 5 to 'a', 'b', and 'c' respectively.


Approach:  The idea is similar to implement sliding window technique. In this, we need to find the non-overlapping substrings that have all the characters the same. Then the minimum operations will be the sum of the floor of half the length of each substring.

  1. There is no need to change a character directly. Instead, consider all substring started from any index having only one character.
  2. Now consider any substring of length l such that all the characters of that substring are equal then change floor ( l / 2) characters of this substring to some other character.
  3. So just iterate over all the characters of the string from any character ch find out the maximal length of the substring such that all the characters in that substring are equal to the character ch.
  4. Find the length l of this substring and add floor ( l / 2) to the ans.
  5. After that start from the character just next to the end of the above substring.

Output
1

Time Complexity: O (N)

Auxiliary Space: O (1)

Comment
Article Tags: