Problem of the day
You are given a string of lowercase characters. Your task is to rearrange (reorder) the string in such a way that no two adjacent characters are the same.
You have to return the rearranged string. If there exists more than one solution you can return any of them.If there is no such string you have to return “NO SOLUTION”. If your returned value is correct the program will print ‘CORRECT’ else ‘INCORRECT’.
For example :
If we are given a string "aabb", then the possible solutions are:
(i) abab
(ii) baba
We can see no two adjacent characters are the same in both strings.
So both (i) and (ii) are valid solutions.
1 <= T <= 100
1 <= N <= 10^4
Where ‘N’ is the length of the string.
Time limit: 1 sec
3
aac
azzz
abbc
aca
NO SOLUTION
abcb
In test case 1, there exists only one solution which is ‘aca’. We can see no two adjacent characters are the same.
In test case 2, For the second string there exists no solution.
In test case 3, there exists more than one solution out of which ‘abcb’ is also a possible solution.
3
bbb
xyz
yaxx
NO SOLUTION
xyz
axyx
In test case 1, there exists no solution.
In test case 2, there exists more than one solution out of which ‘xyz’ is a possible solution.
In test case 3, there exists more than one solution out of which ‘axyx’ is a possible solution.