in Algorithms edited by
5,043 views
3 votes
3 votes

The following paradigm can be used to find the solution of the problem in minimum time:

Given a set of non-negative integer and a value $K$, determine if there is a subset of the given set with sum equal to $K$:

  1. Divide and Conquer
  2. Dynamic Programming
  3. Greedy Algorithm
  4. Branch and Bound
in Algorithms edited by
by
5.0k views

1 comment

option b..dynamic programming.
1
1

1 Answer

3 votes
3 votes
Best answer
it's subset sum problem which required dynamic programming to solve.so option B is correct.
selected by
Answer:

Related questions