atcoder#ARC073B. [ABC060D] Simple Knapsack
[ABC060D] Simple Knapsack
Score : points
Problem Statement
You have items and a bag of strength . The -th item has a weight of and a value of .
You will select some of the items and put them in the bag. Here, the total weight of the selected items needs to be at most .
Your objective is to maximize the total value of the selected items.
Constraints
- For each , .
- , each and are integers.
Input
Input is given from Standard Input in the following format:
:
Output
Print the maximum possible total value of the selected items.
4 6
2 1
3 4
4 10
3 4
11
The first and third items should be selected.
4 6
2 1
3 7
4 10
3 6
13
The second and fourth items should be selected.
4 10
1 100
1 100
1 100
1 100
400
You can take everything.
4 1
10 100
10 100
10 100
10 100
0
You can take nothing.