Recent questions tagged dynamic-programming

1 votes
3 answers
33
In case of the dynamic programming approach the value of an optimal solution is computed in :Top down fashionBottom up fashionLeft to Right fashionRight to Left fashion
1 votes
1 answer
34
0 votes
0 answers
41
0 votes
2 answers
42
What advantage does top down approch have over bottom up approach in case of dynamic programming??
0 votes
1 answer
43
Can we solve fractional knapsack using dynamic programming?
0 votes
1 answer
44
For longest common subsequence the total number of subsequence possible for the word DIYA should be 2^4 or (2^4)-1??Please explain.
2 votes
0 answers
49
1 votes
1 answer
50
Consider two sequences $X$ and $Y$ :$X=<0, 1, 2, 1, 3, 0, 1>$$Y=<1, 3, 2, 0, 1, 0>$The length of longest common subsequence between $X$ and $Y$ is$2$$3$$4$$5$
0 votes
1 answer
51
2 votes
2 answers
52
Is there any shortcut or Trick to get min number of multiplication faster? I mean if we could know the right split.
0 votes
1 answer
53
What is the best way to solve a 0/1 knapsack problem? Any trick to solve it without wasting much time?Not How to
0 votes
0 answers
54
0 votes
0 answers
55
0 votes
0 answers
56
how many terms will be computed to determine the value of 10C8 using divide and conquer strategy and dynamic programming?for divide and conquer ans is 89 how to compute p...