-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy path1153. String Transforms Into Another String.js
59 lines (55 loc) · 2.17 KB
/
1153. String Transforms Into Another 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
58
59
// Given two strings str1 and str2 of the same length, determine whether you can transform str1 into str2 by doing zero or more conversions.
// In one conversion you can convert all occurrences of one character in str1 to any other lowercase English character.
// Return true if and only if you can transform str1 into str2.
//
// Example 1:
//
// Input: str1 = "aabcc", str2 = "ccdee"
// Output: true
// Explanation: Convert 'c' to 'e' then 'b' to 'd' then 'a' to 'c'. Note that the order of conversions matter.
//
// Example 2:
//
// Input: str1 = "leetcode", str2 = "codeleet"
// Output: false
// Explanation: There is no way to transform str1 to str2.
//
// Note:
//
// 1 <= str1.length == str2.length <= 10^4
// Both str1 and str2 contain only lowercase English letters.
/**
* @param {string} str1
* @param {string} str2
* @return {boolean}
*/
// Time O(N) for scanning input
// Space O(26) to record the mapping
//
// e.g.
// s1 = "ace", s2 = "cea", draw arrows between each transformation
// key -> value
// a -> c
// c -> e
// e -> a
//
// If a value shows up later as a key, then it makes a linkedlist structure,
// and if a value has already been a key, then there is a cycle (in this case, the last "a" is the key in the first row).
//
// For linkedlist without cycle we can just backward substitute the key with the value, there exists a way of converting s1 to s2 for sure.
// For linkedlist with a cycle, such as "a -> c -> e -> a", we need to break the loop and use a temporary variable to cache the point of break,
// in this case, it becomes the transformation with two steps: "a -> tmp" and "tmp -> c -> e -> a".
// Now the bottleneck is if we can find a temporary variable to carry the conversion, if there is one, then the conversion is viable.
// If both source and target have 26 different characters, there is no more temporary variable to use
const canConvert = (str1, str2) => {
if (str1 === str2) return true;
const map = new Map();
for (let i = 0; i < str1.length; i++) {
if (map.has(str1[i]) && map.get(str1[i]) !== str2[i]) {
return false;
}
map.set(str1[i], str2[i]);
}
const set = new Set(map.values());
return set.size < 26;
};