![]() |
VOOZH | about |
Given a string str and Q queries in form of [L, R, K], the task is to find whether characters from the string from [L, R] with at most K changes are allowed can be rearranged to make string palindromic or not. For each query, print "YES" if it can become a palindromic string else print "NO".
Examples:
Input: str = "GeeksforGeeks", Q = { { 1, 5, 3 }, { 5, 7, 0 }, { 8, 11, 3 }, {3, 10, 5 }, { 0, 9, 5 } }
Output:
YES
NO
YES
YES
YES
Explanation:
queries[0] : substring = "eeksf", could be changed to "eekee" which is palindrome.
queries[1] : substring = "for", is not palindrome and can't be made palindromic after replacing atmost 0 character..
queries[2] : substring = "Geek", could be changed to "GeeG" which is palindrome.
queries[3] : substring = "ksforGee", could be changed to "ksfoofsk" which is palindrome.
queries[4] : substring = "GeeksforGe", could be changed to "GeeksskeeG" which is palindrome.
Input: str = "abczwerte", Q = { { 3, 7, 4 }, { 1, 8, 10 }, { 0, 3, 1 } }
Output:
YES
YES
NO
Approach: This problem can be solved using Dynamic Programming.
count = dp[i][right] - dp[i][left] + (str[left] == i + 'a').
Below is the implementation of the above approach:
YES NO YES YES YES
Time Complexity: O(26*N), where N is the length of the string.
Auxiliary Space: O(26*N), where N is the length of the string.