-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0839-similar-string-groups.js
71 lines (60 loc) · 1.99 KB
/
0839-similar-string-groups.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* 839. Similar String Groups
* https://leetcode.com/problems/similar-string-groups/
* Difficulty: Hard
*
* Two strings, X and Y, are considered similar if either they are identical or we can make them
* equivalent by swapping at most two letters (in distinct positions) within the string X.
*
* 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 strs of strings where every string in strs is an anagram of every other
* string in strs. How many groups are there?
*/
/**
* @param {string[]} strs
* @return {number}
*/
var numSimilarGroups = function(strs) {
const parent = Array.from({ length: strs.length }, (_, i) => i);
const rank = new Array(strs.length).fill(0);
for (let i = 0; i < strs.length; i++) {
for (let j = i + 1; j < strs.length; j++) {
if (areSimilar(strs[i], strs[j])) union(i, j);
}
}
const groups = new Set();
for (let i = 0; i < strs.length; i++) groups.add(find(i));
return groups.size;
function find(x) {
if (parent[x] !== x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
function union(x, y) {
const rootX = find(x);
const rootY = find(y);
if (rootX === rootY) return;
if (rank[rootX] < rank[rootY]) {
parent[rootX] = rootY;
} else {
parent[rootY] = rootX;
if (rank[rootX] === rank[rootY]) rank[rootX]++;
}
}
function areSimilar(a, b) {
if (a === b) return true;
let diff = 0;
for (let i = 0; i < a.length; i++) {
if (a[i] !== b[i] && ++diff > 2) return false;
}
return diff === 2;
}
};