Hi :) We have two string with same size ! ( n = strings.size() )
I want an algorithm with O(n.lg n) , to find LCS of this strings .
What is best Order of this problem ? I can find it with O(n^2) by using dp !
sry 4 my bad English! :|
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Hi :) We have two string with same size ! ( n = strings.size() )
I want an algorithm with O(n.lg n) , to find LCS of this strings .
What is best Order of this problem ? I can find it with O(n^2) by using dp !
sry 4 my bad English! :|
Name |
---|
How much do you pay for nlogn? and for linear?
Well, you can decrease it to a LIS problem. Lets say you have strings S1 and S2. You can take S1 and for every character put in a list for that character the indexes where the character occurs. These lists should be sorted in decreasing order. For example if you have string "abacba" you have these lists
Now, if you look at S2 and for each character put in a sequence its list(note that it can be empty), you have a sequence in which you should search for LIS. Here's with the example if S2 is 'baaxac' you have sequence 1,4, 5,2,0, 5,2,0, ,5,2,0, 3. The LIS of this sequence is 3 as the answer would be. If you have to retrieve some string as an answer you can just retrieve the corresponding letters. Now that we have a LIS problem, it can be solved in nlogn. If you don't know how, there is a very recent post about that here. The only problem is that the sequence can get big, but it is in rare situations, so you have an average case of nlogn and a worst case of O(NM) or something like that, but it is still a good idea, which is worth the thoughts, especially if you have some restrictions about the type of the input
Thanks a lot :) I want this too , ty for help :)
"These lists should be sorted in decreasing order".
So shouldn't the list for b read [4, 1] rather than [1, 4] ?
I thing this is a wrong on typing ! :)
Yes, it is! Thank you! :). The answer is still 3 though..
Helpful post!
nice idea