[lintcode] problem 856 – sentence similarity

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, words1 = great acting skills and words2 = 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

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

Example

No.1

Input: words1 = [“great”,”acting”,”skills”], words2 = [“fine”,”drama”,”talent”] and pairs = [[“great”,”fine”],[“drama”,”acting”],[“skills”,”talent”]]

Output: true

Explanation:
“great” is similar with “fine”
“acting” is similar with “drama”
“skills” is similar with “talent”

No.2

Input: words1 = [“fine”,”skills”,”acting”], words2 = [“fine”,”drama”,”talent”] and pairs = [[“great”,”fine”],[“drama”,”acting”],[“skills”,”talent”]]

Output: false

Explanation:
“fine” is the same as “fine”
“skills” is not similar with “drama”
“acting” is not similar with “talent”

Code

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
public boolean (String[] words1, String[] words2, List<List<String>> pairs) {
if (words1.length != words2.length)
return false;

Map<String, Set<String>> map = new HashMap<>();

for (List<String> pair : pairs) {
map.putIfAbsent(pair.get(0), new HashSet<>());
map.get(pair.get(0)).add(pair.get(1));

map.putIfAbsent(pair.get(1), new HashSet<>());
map.get(pair.get(1)).add(pair.get(0));
}

for (int i = 0; i < words1.length; i++) {
if (words1[i].equals(words2[i]))
continue;

if (!map.containsKey(words1[i]))
return false;

if (!map.get(words1[i]).contains(words2[i]))
return false;
}

return true;
}