854 K-Similar Strings
854. K-Similar Strings
1. Question
Strings A
andB
areK
-similar (for some non-negative integerK
) if we can swap the positions of two letters inA
exactlyK
times so that the resulting string equalsB
.
Given two anagramsA
andB
, return the smallestK
for whichA
andB
areK
-similar.
Example 1:
Example 2:
Example 3:
Example 4:
Note:
1 <= A.length == B.length <= 20
A
andB
contain only lowercase letters from the set{'a', 'b', 'c', 'd', 'e', 'f'}
2. Implementation
(1) BFS
3. Time & Space Complexity
BFS: 时间复杂度O(n^2), 空间复杂度O(n)
Last updated
Was this helpful?