-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path1061-lexicographically-smallest-equivalent-string.js
57 lines (52 loc) · 1.69 KB
/
1061-lexicographically-smallest-equivalent-string.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
/**
* 1061. Lexicographically Smallest Equivalent String
* https://leetcode.com/problems/lexicographically-smallest-equivalent-string/
* Difficulty: Medium
*
* You are given two strings of the same length s1 and s2 and a string baseStr.
*
* We say s1[i] and s2[i] are equivalent characters.
* - For example, if s1 = "abc" and s2 = "cde", then we have 'a' == 'c', 'b' == 'd', and 'c' == 'e'.
*
* Equivalent characters follow the usual rules of any equivalence relation:
* - Reflexivity: 'a' == 'a'.
* - Symmetry: 'a' == 'b' implies 'b' == 'a'.
* - Transitivity: 'a' == 'b' and 'b' == 'c' implies 'a' == 'c'.
*
* For example, given the equivalency information from s1 = "abc" and s2 = "cde", "acd" and "aab"
* are equivalent strings of baseStr = "eed", and "aab" is the lexicographically smallest equivalent
* string of baseStr.
*
* Return the lexicographically smallest equivalent string of baseStr by using the equivalency
* information from s1 and s2.
*/
/**
* @param {string} s1
* @param {string} s2
* @param {string} baseStr
* @return {string}
*/
var smallestEquivalentString = function(s1, s2, baseStr) {
const parent = Array(26).fill().map((_, i) => i);
for (let i = 0; i < s1.length; i++) {
union(s1.charCodeAt(i) - 97, s2.charCodeAt(i) - 97);
}
return baseStr.split('')
.map(char => String.fromCharCode(97 + find(char.charCodeAt(0) - 97)))
.join('');
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) {
parent[rootY] = rootX;
} else if (rootX > rootY) {
parent[rootX] = rootY;
}
}
};