Answered step by step
Verified Expert Solution
Question
1 Approved Answer
4. We can consider LCS(X,Y) as a matching between some character of X to some char- acters in Y. For example LCS( AAB AB) contains
4. We can consider LCS(X,Y) as a matching between some character of X to some char- acters in Y. For example LCS(" AAB" AB") contains two matchings, both of length 2. See Figure 1 X = "AD A B" X = AD AB" * p *** Y = "AB Y = "AB Figure 1: Two different matchings. Both of them are solutions to LCS(ADAB", "AB") Suggest an algorithm, as efficient as possible, that receives two sequences X and Y, and return 'YES' if and only if there are two different matchings, both are solutions to LCS(X,Y)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started