Submit | All submissions | Best solutions | Back to list |
KNAPSACK - The Knapsack Problem |
The famous knapsack problem. You are packing for a vacation on the sea side and you are going to carry only one bag with capacity S (1 <= S <= 2000). You also have N (1<= N <= 2000) items that you might want to take with you to the sea side. Unfortunately you can not fit all of them in the knapsack so you will have to choose. For each item you are given its size and its value. You want to maximize the total value of all the items you are going to bring. What is this maximum total value?
Input
On the first line you are given S and N. N lines follow with two integers on each line describing one of your items. The first number is the size of the item and the next is the value of the item.
Output
You should output a single integer on one like - the total maximum value from the best choice of items for your trip.
Example
Input: 4 5 1 8 2 4 3 0 2 5 2 3 Output: 13
Added by: | Nikola P Borisov |
Date: | 2008-11-10 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ERL JS-RHINO NODEJS PERL6 VB.NET |
hide comments
|
|||||||||
2022-12-18 04:18:28
Can someone tell some dp problems based on knapsack |
|||||||||
2021-09-22 17:21:02
basic but important |
|||||||||
2021-06-15 22:03:30
ok |
|||||||||
2020-07-22 19:08:17
Don't use tabular approach. Solve it with recursive. Improve your intuition. |
|||||||||
2020-04-28 16:23:25
dp with memoization! |
|||||||||
2020-03-29 06:30:44
only hint is try bottom up aproach either you have to face tle or run time error for sure #happy_coding |
|||||||||
2019-05-09 19:38:58
basic dp try iterative dp to learn something new bcz everyone try with recursive |
|||||||||
2019-03-12 17:06:09
topdown dp accepted :). Next try PARTY |
|||||||||
2019-03-09 20:08:07
AC in one go |
|||||||||
2019-02-14 13:36:11
T-series is nothing but a ..... lasagna |