Sentence Similarity II问题及解法

来源:互联网 发布:淘宝凑单怎么不能跨店 编辑:程序博客网 时间:2024/05/22 01:37

问题描述:

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", "good"], ["fine", "good"], ["acting","drama"], ["skills","talent"]].

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

Similarity is also 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"].


问题分析:

对于此类问题,我们可以采用DFS方法遍历求解。


过程详见代码:

class Solution {public:    bool areSentencesSimilarTwo(vector<string>& words1, vector<string>& words2, vector<pair<string, string>> pairs) {if (words1.size() != words2.size()) return false;unordered_map<string, unordered_set<string>> p;for (auto &vp : pairs) {p[vp.first].emplace(vp.second);p[vp.second].emplace(vp.first);}for (int i = 0; i < words1.size(); i++) {unordered_set<string> visited;if (isSimilar(words1[i], words2[i], p, visited)) continue;else return false;}return true;}bool isSimilar(string& s1, string& s2, unordered_map<string, unordered_set<string>>& p, unordered_set<string>& visited) {if (s1 == s2) return true;visited.emplace(s1);for (auto s : p[s1]) {if (!visited.count(s) && isSimilar(s, s2, p, visited))return true;}return false;}};


原创粉丝点击