Open In App

Python3 Program to Minimize characters to be changed to make the left and right rotation of a string same

Last Updated : 17 Aug, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

Given a string S of lowercase English alphabets, the task is to find the minimum number of characters to be changed such that the left and right rotation of the string are the same.

Examples:

Input: S = “abcd”
Output: 2
Explanation:
String after the left shift: “bcda”
String after the right shift: “dabc”
Changing the character at position 3 to ‘a’ and character at position 4 to ‘b’, the string is modified to “abab”.
Therefore, both the left and right rotations becomes “baba”.

Input: S = “gfg”
Output: 1
Explanation:
After updating the character at position 1 to ‘g’, the string becomes “ggg”.
Therefore, the left and right rotation are equal.

Approach: The key observation to solve the problem is that when the length of the string is even, then all the characters at even index and characters at odd index must be the same for the left and right rotations to be the same. For strings of odd length, all the characters must be equal. Follow the steps below to solve the problem:

  • Check if the length of the string is even, then the minimum number of characters to be changed is the length of the string excluding the frequency of the most occurring element at the even indices and odd indices.
  • Otherwise, if the length of the string is odd, then the minimum number of characters to be changed is the length of the string excluding the frequency of the most occurring character in the string.
  • Print the final count obtained.

Below is the implementation of the above approach:

Python3




# Python3 Program of the
# above approach
  
# Function to find the minimum
# characters to be removed from
# the string
def getMinimumRemoval(str):
    
    n = len(str)
  
    # Initialize answer by N
    ans = n
  
    # If length is even
    if(n % 2 == 0):
  
        # Frequency array for odd
        # and even indices
        freqEven = {}
        freqOdd = {}
        for ch in range(ord('a'), 
                        ord('z') + 1):
            freqEven[chr(ch)] = 0
            freqOdd[chr(ch)] = 0
  
        # Store the frequency of the
        # characters at even and odd
        # indices
        for i in range(n):
            if(i % 2 == 0):
                if str[i] in freqEven:
                    freqEven[str[i]] += 1
            else:
                if str[i] in freqOdd:
                    freqOdd[str[i]] += 1
  
        # Stores the most occurring 
        # frequency for even and 
        # odd indices
        evenMax = 0
        oddMax = 0
  
        for ch in range(ord('a'), 
                        ord('z') + 1):
            evenMax = max(evenMax, 
                      freqEven[chr(ch)])
            oddMax = max(oddMax, 
                     freqOdd[chr(ch)])
  
        # Update the answer
        ans = ans - evenMax - oddMax
  
    # If length is odd
    else:
  
        # Stores the frequency of the
        # characters of the string
        freq = {}
          
        for ch in range('a','z'):
            freq[chr(ch)] = 0
        for i in range(n):
            if str[i] in freq:
                freq[str[i]] += 1
  
        # Stores the most occurring 
        # characterin the string
        strMax = 0
          
        for ch in range('a','z'):
            strMax = max(strMax, 
                     freq[chr(ch)])
  
        # Update the answer
        ans = ans - strMax
  
    return ans
  
# Driver Code
str = "geeksgeeks"
print(getMinimumRemoval(str))
  
# This code is contributed by avanitrachhadiya2155


 
 

Output: 

6

 

Time Complexity: O(N), as we are using a loop to traverse N times so it will cost us O(N) time 
Auxiliary Space: O(1), as we are not using any extra space.

Please refer complete article on Minimize characters to be changed to make the left and right rotation of a string same for more details!
 



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads