Advanced Design and Analysis Techniques

39
Computer Sciences Department 1

description

Advanced Design and Analysis Techniques. ( 15.1 , 15.2 , 15.3 , 15.4 and 15.5 ). Objectives . Problem Formulation Examples The Basic Problem Principle of optimality Important techniques: dynamic programming (Chapter 15), greedy algorithms (Chapter 16). Techniques -1 . - PowerPoint PPT Presentation

Transcript of Advanced Design and Analysis Techniques

Page 1: Advanced Design and Analysis Techniques

Computer Sciences Department 1

Page 2: Advanced Design and Analysis Techniques
Page 3: Advanced Design and Analysis Techniques

Computer Sciences Department 3

Advanced Design and Analysis Techniques

(15.1, 15.2, 15.3 , 15.4 and 15.5)

Page 4: Advanced Design and Analysis Techniques

Computer Sciences Department 4

Problem Formulation Examples The Basic Problem Principle of optimality Important techniques:

dynamic programming (Chapter 15), greedy algorithms (Chapter 16)

Objectives

Page 5: Advanced Design and Analysis Techniques

Computer Sciences Department 5

This part covers three important techniques for the design and analysis of efficient algorithms: dynamic programming (Chapter 15), greedy algorithms (Chapter 16)

Techniques -1

Page 6: Advanced Design and Analysis Techniques

Computer Sciences Department 6

Earlier parts have presented other widely applicable techniques, such as divide-and-conquer, randomization, and the solution of recurrences.

Techniques - 2

Page 7: Advanced Design and Analysis Techniques

Computer Sciences Department 7

Dynamic programming is an optimization approach that transforms a complex problem into a sequence of simpler problems.

It is used in many areas such as Computer science “theory, graphics, AI, systems, ….etc”

Dynamic programming typically applies to optimization problems in which a set of choices must be made in order to arrive at an optimal solution.

Dynamic programming is effective when a given subproblem may arise from more than one partial set of choices; the key technique is to store the solution to each such subproblem in case it should reappear.

Dynamic programming

Page 8: Advanced Design and Analysis Techniques

Computer Sciences Department 8

Like dynamic-programming algorithms, greedy algorithms typically apply to optimization problems in which a set of choices must be made in order to arrive at an optimal solution. The idea of a greedy algorithm is to make each choice in a locally optimal manner.

Greedy algorithms

Page 9: Advanced Design and Analysis Techniques

Computer Sciences Department 9

Dynamic programming, like the divide-and-conquer method, solves problems by combining the solutions to subproblems.

Divide and- conquer algorithms partition the problem into independent subproblems, solve the subproblems recursively, and then combine their solutions to solve the original problem.

Dynamic programming -1

Page 10: Advanced Design and Analysis Techniques

Computer Sciences Department 10

Dynamic programming is applicable when the subproblems are not independent, that is, when subproblems share subsubproblems.

A dynamic-programming algorithm solves every subsubproblem just once and then saves its answer in a table, thereby avoiding the work of recomputing the answer every time the subsubproblem is encountered.

Dynamic programming -2

Page 11: Advanced Design and Analysis Techniques

Computer Sciences Department 11

Dynamic programming is typically applied to optimization problems. In such problems there can be many possible solutions. Each solution has a value, and we wish to find a solution with the optimal (minimum or maximum) value. We call such a solution an optimal solution to the problem, as opposed to the optimal solution, since there may be several solutions that achieve the optimal value.

Dynamic programming -2

Page 12: Advanced Design and Analysis Techniques

Computer Sciences Department 12

The development of a dynamic-programming algorithm can be broken into a sequence of four steps.

1. Characterize the structure of an optimal solution.

2. Recursively define the value of an optimal solution.

3. Compute the value of an optimal solution in a bottom-up fashion.

4. Construct an optimal solution from computed information.

The development of a dynamic-programming algorithm

Page 13: Advanced Design and Analysis Techniques

Computer Sciences Department 13

15.1 Assembly-line scheduling (self study)

Page 14: Advanced Design and Analysis Techniques

Computer Sciences Department 14

Step 1: The structure of the fastest way through the factory (self study)

Page 15: Advanced Design and Analysis Techniques

Computer Sciences Department 15

Step 2: A recursive solution (self study)

Page 16: Advanced Design and Analysis Techniques

Computer Sciences Department 16

Step 3: Computing the fastest times (self study)

Page 17: Advanced Design and Analysis Techniques

Computer Sciences Department 17

Step 4: Constructing the fastest way through the factory (self study)

Page 18: Advanced Design and Analysis Techniques

Computer Sciences Department 18

15.2 Matrix-chain multiplication

We can multiply two matrices A and B only if they are compatible: the number of columns of A must equal the number of rows of B. If A is a p × q matrix and B is a q × r matrix, the resulting matrix C is a p × r matrix

Page 19: Advanced Design and Analysis Techniques

Computer Sciences Department 19

Counting the number of parenthesizations

Page 20: Advanced Design and Analysis Techniques

Computer Sciences Department 20

Step 1: The structure of an optimal parenthesization

Step 2: A recursive solution

Step 3: Computing the optimal costs

Page 21: Advanced Design and Analysis Techniques

Computer Sciences Department 21

Step 3: Computing the optimal costs

Page 22: Advanced Design and Analysis Techniques

Computer Sciences Department 22

Page 23: Advanced Design and Analysis Techniques

Computer Sciences Department 23

Step 4: Constructing an optimal solution

Page 24: Advanced Design and Analysis Techniques

Computer Sciences Department 24

Elements of dynamic programming (self

stady)15.3

Page 25: Advanced Design and Analysis Techniques

Computer Sciences Department 25

The first step in solving an optimization problem by dynamic programming is to characterize the structure of an optimal solution. Recall that a problem exhibits optimal substructure if an optimal solution to the problem contains within it optimal solutions to subproblems.

Optimal substructure

Page 26: Advanced Design and Analysis Techniques

Computer Sciences Department 26

a good rule of thumb is to try to keep the space as simple as possible, and then to expand it as necessary.

For example: the space of subproblems that we considered for

assembly-line scheduling was the fastest way from entry into the factory through stations S1, j and S2, j. This subproblem space worked well, and there was no need to try a more general space of subproblems.

Characterize the space of subproblems

Page 27: Advanced Design and Analysis Techniques

Computer Sciences Department 27

Optimal substructure varies across problem domains in two ways:

1. how many subproblems are used in an optimal solution to the original problem, and2. how many choices we have in determining which subproblem(s) to use in an optimal solution.

Optimal substructure

Page 28: Advanced Design and Analysis Techniques

Computer Sciences Department 28

In assembly-line scheduling, an optimal solution uses just one subproblem, but we must consider two choices in order to determine an optimal solution. To find the fastest way through station Si, j, we use either the fastest way through S1, j−1 or the fastest way through S2, j−1; whichever we use represents the one subproblem that we must optimally solve.

Assembly-line scheduling

Page 29: Advanced Design and Analysis Techniques

Computer Sciences Department 29

Informally, the running time of a dynamic-programming algorithm depends on the product of two factors: the number of subproblems overall and how many choices we look at for each subproblem. In assembly-line scheduling, we had Theta (n) subproblems overall, and only two choices to examine for each, yielding a Theta (n) running time.

Running time of a dynamic-programming

Page 30: Advanced Design and Analysis Techniques

Computer Sciences Department 30

One should be careful not to assume that optimal substructure applies when it does not.

Unweighted shortest path:2 Find a path from u to v consisting of the fewest edges. Such a path must be simple, since removing a cycle from a path produces a path with fewer edges.

Unweighted longest simple path: Find a simple path from u to v consisting of the most edges. We need to include the requirement of simplicity because otherwise we can traverse a cycle as many times as we like to create paths with an arbitrarily large number of edges.

A path is called simple if it does not have any repeated vertices.

Be careful

Page 31: Advanced Design and Analysis Techniques

Computer Sciences Department 31 Not simple

Page 32: Advanced Design and Analysis Techniques

Computer Sciences Department 32

Overlapping subproblems Reconstructing an optimal solution Memoization 15.4 Longest common subsequence

read only

Page 33: Advanced Design and Analysis Techniques

Computer Sciences Department 33

Suppose that we are designing a program to translate text from English to French.

For each occurrence of each English word in the text, we need to look up its French equivalent. One way to perform these lookup operations is to build a binary search tree with n English words as keys and French equivalents as satellite data.

15.5 Optimal binary search trees

Page 34: Advanced Design and Analysis Techniques

Computer Sciences Department 34

Page 35: Advanced Design and Analysis Techniques

Computer Sciences Department 35

Page 36: Advanced Design and Analysis Techniques

Computer Sciences Department 36

Page 37: Advanced Design and Analysis Techniques

Computer Sciences Department 37

Page 38: Advanced Design and Analysis Techniques

Computer Sciences Department 38

Page 39: Advanced Design and Analysis Techniques

Computer Sciences Department 39

Dynamic programming is an optimization approach that transforms a complex problem into a sequence of simpler problems.

Dynamic programming is effective when a given subproblem may arise from more than one partial set of choices

Steps of Dynamic programming :1. Characterize the structure of an optimal solution.2. Recursively define the value of an optimal solution.3. Compute the value of an optimal solution in a bottom-up

fashion.4. Construct an optimal solution from computed information.

Dynamic programming is applicable when the subproblems are not independent, that is, when subproblems share subsubproblems.

Principle of optimality

Conclusion -1