Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

A subsequence is palindromic if it is the same whether read left to right or right to left. For instance, the sequence

A,C,G,T,G,T,C,A,A,A,A,T,C,G

has many palindromic subsequences, including A,C,G,C,Aand A,A,A,A(on the other hand, the subsequence A,C,Tis not palindromic). Devise an algorithm that takes a sequence X[1...n]and returns the (length of the) longest palindromic subsequence. Its running time should be0(n2).

Short Answer

Expert verified

We say a stringxi....jis a palindrome ifxi=xjorxi+1=xj-1

Since we need to find the Longest Palindromic Subsequence, for this we will be using dynamic programming approach.

Step by step solution

01

Approach

Here we will first define our sub-problem which would serve as recursive relation, and then we would be calling the sub-problem recursively.

In this question, following two possibilities are:

  • If the first and last character of a string are same, include the first and last character in the palindrome and then in same corresponding order, recursively check for other remaining character.

For instance, if a string isxi....j, then checkxi=xj,xi+1=xj-1and so on.

  • If the first character of the string not matches with the last character, then go back to the values we got from by:
  • Either removing first character from xi....j.
  • Or removing the last character from xi....j.
02

Recursive Relation

S(i,j)=1;ifi=j2+S(i+1,j-2);ifi<jandx[i]=x[j]max{Si,j-1,Si+1,j};otherwise

Where Si,jdefine the length of the palindrome.

03

Implementation of Algorithm

fori=2ton+1Si,i-1=0fori=1ton-1Si,i=1form=1ton-1fori=nton-mj=i+mifxi=xjSi,j=2+Si+1,j-1elseSi,j=maxSi,j-1,Si+1,jreturnS1,n

This solution will return us the longest palindrome in the string xi....j.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Give an O(nt) algorithm for the following task. Input: A list of n positive integers a1,a2,...,an; a positive integer t. Question: Does some subset of the aiโ€™s add up to t? (You can use each ai at most once.) (Hint: Look at subproblems of the form โ€œdoes a subset of{a1,a2,...,ai} add up to ?โ€)

Reconstructing evolutionary trees by maximum parsimony. Suppose we manage to sequence a particular gene across a whole bunch of different species. For concreteness, say there are n species, and the sequences are strings of length k over alphabetโˆ‘={A,C,G,T}. How can we use this information to reconstruct the evolutionary history of these species?

Evolutionary history is commonly represented by a tree whose leaves are the different species, whose root is their common ancestor, and whose internal branches represent speciation events (that is, moments when a new species broke off from an existing one). Thus we need to find the following:

โ€ข An evolutionary tree with the given species at the leaves.

โ€ข For each internal node, a string of length K: the gene sequence for that particular ancestor.

For each possible tree T annotated with sequencess(u)โˆˆโˆ‘kat each of its nodes , we can assign a score based on the principle of parsimony: fewer mutations are more likely.

localid="1659249441524" score(T)=โˆ‘(u.v)โˆˆE(T)(numberofpositionsonwhichs(u)ands(v)disagree)

Finding the highest-score tree is a difficult problem. Here we will consider just a small part of it: suppose we know the structure of the tree, and we want to fill in the sequences s(u) of the internal nodes u. Hereโ€™s an example with k=4 and n=5:


(a) In this particular example, there are several maximum parsimony reconstructions of the internal node sequences. Find one of them.

(b) Give an efficient (in terms of n and k ) algorithm for this task. (Hint: Even though the sequences might be long, you can do just one position at a time.)

Pebbling a checkerboard. We are given a checkerboard which has 4 rows and ncolumns, and has an integer written in each square. We are also given a set of 2n pebbles, and we want to place some or all of these on the checkerboard (each pebble can be placed on exactly one square) so as to maximize the sum of the integers in the squares that are covered by pebbles. There is one constraint: for a placement of pebbles to be legal, no two of them can be on horizontally or vertically adjacent squares (diagonal adjacency is fine).

  1. Determine the number of legal patterns that can occur in any column (in isolation, ignoring the pebbles in adjacent columns) and describe these patterns.

Call two patterns compatible if they can be placed on adjacent columns to form a legal placement. Let us consider subproblems consisting of the first columns 1โ‰คkโ‰คn. Each subproblem can be assigned a type, which is the pattern occurring in the last column.

  1. Using the notions of compatibility and type, give an O(n)-time dynamic programming algorithm for computing an optimal placement.

Sequence alignment. When a new gene is discovered, a standard approach to understanding its function is to look through a database of known genes and find close matches. The closeness of two genes is measured by the extent to which they are aligned. To formalize this, think of a gene as being a long string over an alphabet โˆ‘={A,C,G,T}. Consider two genes (strings) x=ATGCCand y=TACGCA. An alignment of x and y is a way of matching up these two strings by writing them in columns, for instance:

A-T-GCCTA-CGC

Here the โ€œ_โ€ indicates a โ€œgap.โ€ The characters of each string must appear in order, and each column must contain a character from at least one of the strings. The score of an alignment is specified by a scoring matrixฮดof size (โˆ‘+1)ร—(โˆ‘+1), where the extra row and column are to accommodate gaps. For instance the preceding alignment has the following score:

ฮด(-T)+ฮด(A,A)+ฮด(T,-)+ฮด(G,G)+ฮด(C,C)+ฮด(C,A)

Give a dynamic programming algorithm that takes as input two strings X[1K n] and Y {1K m} and a scoring matrix ฮดand returns the highest-scoring alignment. The running time should be O(mn) .

Counting heads. Given integersn and k, along with p1,...,pnโˆˆ[0,1], you want to determine the probability of obtaining exactly heads when biased coins are tossed independently at random, where pi is the probability that the ith coin comes up heads. Give an 0(n2)algorithm for this task. Assume you can multiply and add two numbers in [0,1]in 0(1)time.

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free