#arc073b. [arc073_b]Simple Knapsack

[arc073_b]Simple Knapsack

Problem Statement

You have NN items and a bag of strength WW. The ii-th item has a weight of wiw_i and a value of viv_i.

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 WW.

Your objective is to maximize the total value of the selected items.

Constraints

  • 1N1001 ≤ N ≤ 100
  • 1W1091 ≤ W ≤ 10^9
  • 1wi1091 ≤ w_i ≤ 10^9
  • For each i=2,3,...,Ni = 2,3,...,N, w1wiw1+3w_1 ≤ w_i ≤ w_1 + 3.
  • 1vi1071 ≤ v_i ≤ 10^7
  • WW, each wiw_i and viv_i are integers.

Input

Input is given from Standard Input in the following format:

NN WW w1w_1 v1v_1 w2w_2 v2v_2 : wNw_N vNv_N

Output

Print the maximum possible total value of the selected items.


Sample Input 1

4 6
2 1
3 4
4 10
3 4

Sample Output 1

11

The first and third items should be selected.


Sample Input 2

4 6
2 1
3 7
4 10
3 6

Sample Output 2

13

The second and fourth items should be selected.


Sample Input 3

4 10
1 100
1 100
1 100
1 100

Sample Output 3

400

You can take everything.


Sample Input 4

4 1
10 100
10 100
10 100
10 100

Sample Output 4

0

You can take nothing.