Given 2 strings s and t. I need to find for each substring in s edit distance(Levenshtein distance) to t. Actually I need to know for each i position in s what is the minimum edit distance for all substrings started at position i.

For example:

t = "ab"    
s = "sdabcb"

And I need to get something like:

{2,1,0,2,2}

Explanation:

1st position:
distance("ab", "sd") = 4 ( 2*subst )
distance("ab", "sda") = 3( 2*delete + insert )
distance("ab", "sdab") = 2 ( 2 * delete)
distance("ab", "sdabc") = 3 ( 3 * delete)
distance("ab", "sdabcb") = 4 ( 4 * delete)
So, minimum is 2

2nd position:
distance("ab", "da") = 2 (delete + insert)
distance("ab", "dab") = 1 (delete)
distance("ab", "dabc") = 2 (2*delete)
....
So, minimum is 1

3th position:
distance("ab", "ab") = 0
...
minimum is 0

and so on.

I can use brute force algorithm to solve this task, of course. But is there faster algorithm?

Thanks for help.

link|improve this question

I know that your answer {2,1,**0,2**,2} is wrong, because adjacent numbers can differ by at most 1: if there is a substring s[i..j] with minimum edit distance k to t, then the substring s[(i+1)..j] can match t with cost at most k+1 by making the first edit operation an insertion of s[i] at the very start of the string. In your example, for the 4th position, distance("ab", "b") = 1 (1 insert) and for the 5th, distance("ab", "cb") = 1 (1 subst). – j_random_hacker Nov 16 '11 at 3:46
feedback

1 Answer

up vote 0 down vote accepted

The Wagner-Fischer algorithm gives you the answer for all prefixes "for free".

http://en.wikipedia.org/wiki/Wagner%E2%80%93Fischer_algorithm

The last row of the Wagner-Fischer matrix contains the edit distance from each prefix of s to t.

So as a first crack at your problem, for each i, run Wagner-Fischer and select the smallest element in the last row.

I will be curious to see if anyone else knows (or can find) a better approach.

link|improve this answer
Thanks, but I meant this solution as brute force... and I hope that exists better solution (related time complexity). – Ivan Benko Nov 15 '11 at 18:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.