LKS - Large Knapsack


The knapsack problem or rucksack problem is a problem in combinatorial optimization: Given a set of items, each with a weight and a value, determine the number of each item to include in a collection so that the total weight is less than or equal to a given limit and the total value is as large as possible. It derives its name from the problem faced by someone who is constrained by a fixed-size knapsack and must fill it with the most valuable items.

Just implement 0/1 Knapsack.

Input

First line contains two integers K and N, where K in the maximum knapsack size and N is the number of items. N lines follow where ith line describes ith item in the form vi and wi where vi is the value and wi is the weight of ith item.

Output

Output a single number - maximum value of knapsack. (All operations and the answer are guaranteed to fit in signed 32-bit integer.)

Time limit changed to 2s on 02.07.11.

Example

Input:
10 3
7 3
8 8
4 6

Output:
11

Constraints

K <= 2000000
N <= 500
Vi <= 10^7
Wi <= 10^7


hide comments
vuduoc: 2023-09-12 17:29:29

i ask

hoanganh2222: 2023-09-12 07:23:45

who ask

nazmul_hossin: 2022-06-29 10:18:19

TLE with separate knapsack function but AC when implementing knapsack function in the main function. why?

prezesstefan: 2021-06-19 04:05:25

Java: NZEC may mean you need memory-optimized DP (essentially == MLE).
Java is really tight, you will need O(K) memory (not O(nK) or not even O(2K)), plus time optimization too (do check out those geeksforgeeks links).

ahmed_samir13: 2021-04-27 11:08:33

i got AC one year ago , now i submit the same code , it give runtime error (SIGKILL) ?!!!!

brianmulyadi: 2020-12-10 08:02:13

I got acc in one go

nipun_baishnab: 2019-08-15 19:57:32

my fst day of learning knapsack and accepted in one go!!

spartan09: 2019-07-08 13:38:44

use int instead of long long int

mr_robo1: 2019-05-20 11:31:22

AC in first submission

itssanat: 2018-11-04 07:03:14

AC in one go :-) !!!!


Added by:Ace
Date:2013-06-24
Time limit:2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64