Presentation is loading. Please wait.

Presentation is loading. Please wait.

Dynamic Programming Kun-Mao Chao (趙坤茂)

Similar presentations


Presentation on theme: "Dynamic Programming Kun-Mao Chao (趙坤茂)"— Presentation transcript:

1 Dynamic Programming Kun-Mao Chao (趙坤茂)
Department of Computer Science and Information Engineering National Taiwan University, Taiwan WWW:

2 Dynamic Programming Dynamic programming is a class of solution methods for solving sequential decision problems with a compositional cost structure. Richard Bellman was one of the principal founders of this approach.

3 Two key ingredients Two key ingredients for an optimization problem to be suitable for a dynamic-programming solution: 2. overlapping subproblems 1. optimal substructures Subproblems are dependent. (otherwise, a divide-and-conquer approach is the choice.) Each substructure is optimal. (Principle of optimality)

4 Three basic components
The development of a dynamic-programming algorithm has three basic components: The recurrence relation (for defining the value of an optimal solution); The tabular computation (for computing the value of an optimal solution); The traceback (for delivering an optimal solution).

5 Fibonacci numbers The Fibonacci numbers are defined by the following recurrence: . for 2 1 - + = i>1 i F

6 How to compute F10? F10 F9 F8 F7 F6 ……

7 Tabular computation The tabular computation can avoid recompuation. F0
1 2 3 5 8 13 21 34 55

8 Longest increasing subsequence(LIS)
The longest increasing subsequence is to find a longest increasing subsequence of a given sequence of distinct integers a1a2…an . e.g 3 7 7 11 are increasing subsequences. We want to find a longest one. are not increasing subsequences.

9 A naive approach for LIS
Let L[i] be the length of a longest increasing subsequence ending at position i. L[i] = 1 + max j = 0..i-1{L[j] | aj < ai} (use a dummy a0 = minimum, and L[0]=0) L[i] ?

10 A naive approach for LIS
L[i] = 1 + max j = 0..i-1 {L[j] | aj < ai} L[i] The maximum length The subsequence 2, 3, 7, 8, 10, 13 is a longest increasing subsequence. This method runs in O(n2) time.

11 An O(n log n) method for LIS
Define BestEnd[k] to be the smallest number of an increasing subsequence of length k. 9 2 2 2 2 2 2 2 2 BestEnd[1] 5 3 3 3 3 3 3 BestEnd[2] 7 7 7 7 7 BestEnd[3] 11 8 8 8 BestEnd[4] 10 10 BestEnd[5] 13 BestEnd[6]

12 An O(n log n) method for LIS
Define BestEnd[k] to be the smallest number of an increasing subsequence of length k. 9 2 2 2 2 2 2 2 2 2 BestEnd[1] 5 3 3 3 3 3 3 3 BestEnd[2] 7 7 7 7 7 6 BestEnd[3] 11 8 8 8 8 BestEnd[4] For each position, we perform a binary search to update BestEnd. Therefore, the running time is O(n log n). 10 10 10 BestEnd[5] 13 13 BestEnd[6]

13 Longest Common Subsequence (LCS)
A subsequence of a sequence S is obtained by deleting zero or more symbols from S. For example, the following are all subsequences of “president”: pred, sdn, predent. The longest common subsequence problem is to find a maximum-length common subsequence between two sequences.

14 LCS For instance, Sequence 1: president Sequence 2: providence
Its LCS is priden. president providence

15 LCS Another example: Sequence 1: algorithm Sequence 2: alignment
One of its LCS is algm. a l g o r i t h m a l i g n m e n t

16 How to compute LCS? Let A=a1a2…am and B=b1b2…bn .
len(i, j): the length of an LCS between a1a2…ai and b1b2…bj With proper initializations, len(i, j)can be computed as follows.

17

18

19

20

21 Longest Common Increasing Subsequence
Proposed by Yang, Huang and Chao IPL 2005 Improvement for some special case: Katriel and Kutz (March 2005) Chan, Zhang, Fung, Ye and Zhu (ISAAC 2005)


Download ppt "Dynamic Programming Kun-Mao Chao (趙坤茂)"

Similar presentations


Ads by Google