Fri. Apr 19th, 2024

Given alphanumeric string s. (Alphanumeric string is a string consisting of lowercase English letters and digits).

You have to find a permutation of the string where no letter is followed by another letter and no digit is followed by another digit. That is, no two adjacent characters have the same type.

Return the reformatted string or return an empty string if it is impossible to reformat the string.

Example 1:

Input: s = "a0b1c2"
Output: "0a1b2c"
Explanation: No two adjacent characters have the same type in "0a1b2c". "a0b1c2", "0a1b2c", "0c2a1b" are also valid permutations.

Example 2:

Input: s = "leetcode"
Output: ""
Explanation: "leetcode" has only characters so we cannot separate them by digits.

Example 3:

Input: s = "1229857369"
Output: ""
Explanation: "1229857369" has only digits so we cannot separate them by characters.
class Solution {
    public String reformat(String s) {
        if(s.length() == 1) return s;
        String num = "0123456789";
        PriorityQueue<String> numQueue = new PriorityQueue<String>();
        PriorityQueue<String> alphaQueue = new PriorityQueue<String>();
        for(int i=0;i<s.length();i++){
            if(num.contains(s.charAt(i)+"")){
                numQueue.add(s.charAt(i)+"");
            }else{
                alphaQueue.add(s.charAt(i)+"");
            }
        }
        int n_size = numQueue.size();
        int a_size = alphaQueue.size();
        String output = "";
        if(n_size == 0 || a_size == 0) return "";
        if(n_size == a_size){
           int j=0;
           boolean flag = num.contains(s.charAt(0)+"");
           while(j<s.length()){
             if(flag){
                if(alphaQueue.size()>0){
                    String temp = alphaQueue.poll();
                    output = output+temp;
                    j++;
                }
                if(numQueue.size()>0){
                    String temp = numQueue.poll();
                    output = output+temp;  
                    j++;
                }    
             }else{
                if(numQueue.size()>0){
                    String temp = numQueue.poll();
                    output = output+temp;
                    j++;
                }
                if(alphaQueue.size()>0){
                    String temp = alphaQueue.poll();
                    output = output+temp;
                    j++;
                }
             }
           } 
        }
        else if( (n_size-1 == a_size) || (n_size == a_size-1)){
            if(n_size<a_size){
                int j=0;
                while(j<s.length()){
                   if(alphaQueue.size()>0){
                        String temp = alphaQueue.poll();
                        output = output+temp;
                        j++;
                    }
                    if(numQueue.size()>0){
                        String temp = numQueue.poll();
                        output = output+temp;  
                        j++;
                    } 
                }
            }
            if(a_size<n_size){
                int j=0;
                while(j<s.length()){
                   if(numQueue.size()>0){
                        String temp = numQueue.poll();
                        output = output+temp;  
                        j++;
                   }
                   if(alphaQueue.size()>0){
                        String temp = alphaQueue.poll();
                        output = output+temp;
                        j++;
                    } 
                }
            }
        }
        else{
            output = "";
        }
        
        
        return output;
    }
}