leetcode 839. Similar String Groups

Two strings X and Y are similar if we can swap two letters (in different positions) of X, so that it equals Y.

For example, "tars" and "rats" are similar (swapping at positions 0 and 2), and "rats"and "arts" are similar, but "star" is not similar to "tars""rats", or "arts".

Together, these form two connected groups by similarity: {"tars", "rats", "arts"} and {"star"}.  Notice that "tars" and "arts" are in the same group even though they are not similar.  Formally, each group is such that a word is in the group if and only if it is similar to at least one other word in the group.

We are given a list A of strings.  Every string in A is an anagram of every other string in A.  How many groups are there?

Example 1:

Input: ["tars","rats","arts","star"]
Output: 2

Note:

  1. A.length <= 2000
  2. A[i].length <= 1000
  3. A.length * A[i].length <= 20000
  4. All words in A consist of lowercase letters only.
  5. All words in A have the same length and are anagrams of each other.
  6. The judging time limit has been increased for this question.

如果我们交换字符串 X 中的两个不同位置的字母,使得它和字符串 Y 相等,那么称 X 和 Y 两个字符串相似。

例如,"tars" 和 "rats" 是相似的 (交换 0 与 2 的位置); "rats" 和 "arts" 也是相似的,但是 "star" 不与 "tars","rats",或 "arts" 相似。

总之,它们通过相似性形成了两个关联组:{"tars", "rats", "arts"} 和 {"star"}。注意,"tars" 和 "arts" 是在同一组中,即使它们并不相似。形式上,对每个组而言,要确定一个单词在组中,只需要这个词和该组中至少一个单词相似。

我们给出了一个不包含重复的字符串列表 A。列表中的每个字符串都是 A 中其它所有字符串的一个字母异位词。请问 A 中有多少个相似字符串组?

示例:

输入:["tars","rats","arts","star"]
输出:2
提示:

A.length <= 2000
A[i].length <= 1000
A.length * A[i].length <= 20000
A 中的所有单词都只包含小写字母。
A 中的所有单词都具有相同的长度,且是彼此的字母异位词。
此问题的判断限制时间已经延长。
备注:

      字母异位词[anagram],一种把某个字符串的字母的位置(顺序)加以改换所形成的新词。

解题思路:

判断两个字符串是否相似,相似就归并到一组。然后将组数减-1;

在判断两个字符串是否相似中,题意提到了字母异位词。但是并没有说清楚到底将多少位的字母顺序调换。所以只做了一个简化版的判断。

class Solution {
public:
    int numSimilarGroups(vector<string>& A) 
    {
        int len = A.size() ;
        int cnt = len ;
        vector<int> root(len , 0) ;
        for(int i = 0 ; i < len ; ++i) root[i] = i ;
        
        for(int i = 0 ; i < len ; ++i)
        {
            for(int j = i + 1 ; j < len ; ++j)
            {
                if(similar(A[i] , A[j]))
                {
                    int x = find(root , i) ;
                    int y = find(root , j) ;
                    if(x != y)
                    {
                        root[y] = x ;
                        --cnt ;
                    }
                }
            }
        }
        
        return cnt ;
    }
    
private :
    
    bool similar(string &a , string &b)
    {
        int diff = 0 ;
        
        for(int i = 0 ; i < a.size() ; ++i)
        {
            if(a[i] != b[i] && ++diff > 2) return false ;
        }
        
        return true ;
    }
    
    int find(vector<int> &root , int i)
    {
        return i == root[i] ? i : find(root , root[i]) ;
    }
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值