Tuesday, August 25, 2020

LeetCode [734] Sentence Similarity

 734. Sentence Similarity

Easy

Given two sentences words1, words2 (each represented as an array of strings), and a list of similar word pairs pairs, determine if two sentences are similar.

For example, "great acting skills" and "fine drama talent" are similar, if the similar word pairs are pairs = [["great", "fine"], ["acting","drama"], ["skills","talent"]].

Note that the similarity relation is not transitive. For example, if "great" and "fine" are similar, and "fine" and "good" are similar, "great" and "good" are not necessarily similar.

However, similarity is symmetric. For example, "great" and "fine" being similar is the same as "fine" and "great" being similar.

Also, a word is always similar with itself. For example, the sentences words1 = ["great"], words2 = ["great"], pairs = [] are similar, even though there are no specified similar word pairs.

Finally, sentences can only be similar if they have the same number of words. So a sentence like words1 = ["great"] can never be similar to words2 = ["doubleplus","good"].

Note:

  • The length of words1 and words2 will not exceed 1000.
  • The length of pairs will not exceed 2000.
  • The length of each pairs[i] will be 2.
  • The length of each words[i] and pairs[i][j] will be in the range [1, 20].

 

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Solution {
    Map<String, Set<String>> map = new HashMap<>();
    public boolean areSentencesSimilar(String[] words1, String[] words2, List<List<String>> pairs) {
        int n1 = words1.length, n2 = words2.length;
        if(n1!=n2) return false;
        for(List<String> p : pairs){
            String w1 = p.get(0), w2 = p.get(1);
            if(!w1.equals(w2)){
                map.computeIfAbsent(w1, k->new HashSet<>()).add(w2);
                map.computeIfAbsent(w2, k->new HashSet<>()).add(w1);
            }
        }
        
        for(int i=0; i<n1; ++i){
            String w1 = words1[i], w2 = words2[i];
            if(w1.equals(w2)) continue;
            if(!map.containsKey(w1) || !map.get(w1).contains(w2)){
                return false;
            } 
        }
        return true;
    }
}

No comments:

Post a Comment