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
2017-01-22 07:58:36
MY first DP ......now the time has begun:-p
2016-11-26 00:38:49
AC first go my 6th :D
2016-11-22 03:07:07 Harshit Joshi
simple ques to practice basics....

Last edit: 2016-11-22 03:08:17
2016-08-29 06:56:13
Good for beginer who the first learn dynamic programming algorithm :D
2016-06-01 13:59:04
Use DP and its done. AC .very simple problem.
2016-05-28 14:08:37 sanjay
easy one :)
2016-02-09 20:32:41 Nipun
My first dp, you f***rs!! I am the king of the world... yayayayay....
2016-01-28 07:23:20
just use memoization using recursive top down approach. AC at first attempt! :D
2016-01-24 12:45:10
TLE with python3.4 and dp with both top-down/bottom-up apprach.. :(

Last edit: 2016-02-19 11:16:33
2016-01-22 18:21:54 Alex-ander007
Got TLE for top down. Any idea why??
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.