Thursday, January 24, 2019

Leetcode 522. Longest Uncommon Subsequence II

Given a list of strings, you need to find the longest uncommon subsequence among them. The longest uncommon subsequence is defined as the longest subsequence of one of these strings and this subsequence should not be any subsequence of the other strings.
subsequence is a sequence that can be derived from one sequence by deleting some characters without changing the order of the remaining elements. Trivially, any string is a subsequence of itself and an empty string is a subsequence of any string.
The input will be a list of strings, and the output needs to be the length of the longest uncommon subsequence. If the longest uncommon subsequence doesn't exist, return -1.
Example 1:
Input: "aba", "cdc", "eae"
Output: 3
Note:
  1. All the given strings' lengths will not exceed 10.
  2. The length of the given list will be in the range of [2, 50].

Code (Java):
class Solution {
    public int findLUSlength(String[] strs) {
        if (strs == null || strs.length <= 1) {
            return -1;
        }

        // sort in reverse reverseOrder
        //
        Arrays.sort(strs, new MyComparator());

        for (int i = 0; i < strs.length; i++) {
            if ((i != strs.length - 1) && strs[i].equals(strs[i + 1])) {
                continue;
            }

            if (!isSubsequence(i, strs)) {
                return strs[i].length();
            }
        }

        return -1;
    }

    private boolean isSubsequence(int curr, String[] strs) {
        String currStr = strs[curr];

        for (int i = 0; i < curr; i++) {
            if (isSubsequenceHelper(currStr, strs[i])) {
                return true;
            }
        }

        return false;
    }

    private boolean isSubsequenceHelper(String a, String b) {
        int i = 0;
        int j = 0;
        while (i < a.length() && j < b.length()) {
            if (a.charAt(i) == b.charAt(j)) {
                i++;
                j++;
            } else {
                j++;
            }
        }

        return i == a.length();
    }
}

 class MyComparator implements Comparator<String> {
    public int compare(String a, String b) {
        if (a.length() < b.length()) {
            return 1;
        } else if (a.length() > b.length()) {
            return -1;
        }
        
        // length is equal
        //
        if (a.equals(b)) {
            return 0;
        }
        
        for (int i = 0; i < a.length(); i++) {
            if (a.charAt(i) == b.charAt(i)) {
                continue;
            }
            
            return b.charAt(i) - a.charAt(i); 
        }
        
        return 0;
    }
}

No comments:

Post a Comment