-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0854-k-similar-strings.js
52 lines (47 loc) · 1.33 KB
/
0854-k-similar-strings.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
/**
* 854. K-Similar Strings
* https://leetcode.com/problems/k-similar-strings/
* Difficulty: Hard
*
* Strings s1 and s2 are k-similar (for some non-negative integer k) if we can swap the positions
* of two letters in s1 exactly k times so that the resulting string equals s2.
*
* Given two anagrams s1 and s2, return the smallest k for which s1 and s2 are k-similar.
*/
/**
* @param {string} s1
* @param {string} s2
* @return {number}
*/
var kSimilarity = function(s1, s2) {
if (s1 === s2) return 0;
const queue = [s1];
const visited = new Set([s1]);
let swaps = 0;
while (queue.length) {
const size = queue.length;
for (let i = 0; i < size; i++) {
const current = queue.shift();
if (current === s2) return swaps;
let j = 0;
while (j < current.length && current[j] === s2[j]) j++;
for (let k = j + 1; k < current.length; k++) {
if (current[k] === s2[j] && current[k] !== s2[k]) {
const nextStr = swap(current, j, k);
if (!visited.has(nextStr)) {
if (nextStr === s2) return swaps + 1;
visited.add(nextStr);
queue.push(nextStr);
}
}
}
}
swaps++;
}
return swaps;
};
function swap(str, i, j) {
const chars = str.split('');
[chars[i], chars[j]] = [chars[j], chars[i]];
return chars.join('');
}