Recent questions tagged dynamic-programming

0 votes
1 answer
61
how to form The minimum number of scalar multiplications to find the product B1 B2 B3 B4 B5 using the Matrix Chain Multiplication method
0 votes
0 answers
63
0 votes
0 answers
64
I need to find the tight bound of the Fibonacci sequence in dynamic programming (using theta). I only know the bound using big O is O(n). Any idea how to do it?
0 votes
1 answer
66
1 votes
0 answers
67
1 votes
0 answers
68
0 votes
1 answer
70
What do you suggest to do about big matrix multiplications questions in dynamic programming,because they take long time to get solved.Should we solve those questions in g...
1 votes
1 answer
71
0 votes
0 answers
72
While solving the problem of longest match subsequence we use the concept of dynamic programming which further uses tabulation. For given 2 strings we can create a table ...
0 votes
1 answer
74
Given a sequence of n real numbers a1,a2,a3...an then to find contiguous subsequence ai,ai+1,ai+2....aj. Such that it's sum is maximum. How much time the above problem wi...
1 votes
1 answer
78
3 votes
2 answers
79
0 votes
0 answers
81
What is the max height of recursion tree of recurrence $c(100,50)$?here, the recursive function is defined as$c(n,k) = c(n-1,k-1) + c(n,k-1)$terminating condition$c(n,n) ...
2 votes
1 answer
85