1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | public class Solution { public int maxProduct(String[] words) { if (words == null || words.length <= 1 ) return 0 ; Arrays.sort(words, new Comparator<String>() { @Override public int compare(String str1, String str2) { return str2.length() - str1.length(); } }); int [] wordHash = hashWords(words); int maximumProduct = 0 ; int left = 0 , right = words.length - 1 ; while (left < right) { for ( int i = left + 1 ; i <= right; i++) { if ((wordHash[left]&wordHash[i]) == 0 ) { maximumProduct = Math.max(maximumProduct, words[left].length() * words[i].length()); right = i - 1 ; break ; } } left++; } return maximumProduct; } private int [] hashWords(String[] words) { int [] hash = new int [words.length]; for ( int i = 0 ; i < words.length; i++) { String word = words[i]; for ( int j = 0 ; j < word.length(); j++) { hash[i] |= ( 1 << (word.charAt(j) - 'a' )); } } return hash; } } |
Tuesday, December 29, 2015
[LeetCode] Maximum Product of Word Lengths
Reference: https://leetcode.com/discuss/74589/32ms-java-ac-solution
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment