KNAPSACK - The Knapsack Problem

no tags 

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

hide comments
na0013: 2018-06-16 16:29:01

AC in one go!!
Challenge: Solve this using 1 D dp

k3rnelpan1c: 2018-04-27 23:07:29

I have a dream that one day correct python solution won't get a TLE !

goodwilllion: 2018-02-26 09:27:26

AC IN ONE GO!!!

kimchiboy03: 2018-01-28 04:03:25

AC in one go!!!

mpiotrek: 2017-12-19 20:35:46

Remember to NOT write \n at the end :D

realife_playa: 2017-09-11 08:57:05

Should be the first problem for anyone attempting to learn Dynamic Programming.

nadstratosfer: 2017-08-31 11:00:53

With Python, top-down+memo -> RE, bottom-up -> TLE. Same with most of DP problems on this site. Better off bruteforcing with C than bother implementing correct algorithms in something else. Tutorial my ass.
Edit: Came back 2 months older, shuffled a few things around, got AC immediately. Still, correct algo shouldn't require optimization on every corner.

Last edit: 2017-11-18 10:26:38
dunjen_master: 2017-08-11 21:09:30

AC in one go
Try this its an extension to this
http://www.spoj.com/problems/PARTY/

jskrnbindra: 2017-06-08 11:44:27

Last edit: 2017-06-08 11:44:47
da_201501181: 2017-05-20 09:29:14

Easy..!! AC in one GO..!!


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