100603: [AtCoder]ABC060 D - Simple Knapsack

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $400$ points

Problem Statement

You have $N$ items and a bag of strength $W$. The $i$-th item has a weight of $w_i$ and a value of $v_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 $W$.

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

Constraints

  • $1 ≤ N ≤ 100$
  • $1 ≤ W ≤ 10^9$
  • $1 ≤ w_i ≤ 10^9$
  • For each $i = 2,3,...,N$, $w_1 ≤ w_i ≤ w_1 + 3$.
  • $1 ≤ v_i ≤ 10^7$
  • $W$, each $w_i$ and $v_i$ are integers.

Input

Input is given from Standard Input in the following format:

$N$ $W$
$w_1$ $v_1$
$w_2$ $v_2$
:
$w_N$ $v_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.

Input

题意翻译

你有 $N$ 个物品和容量为 $W$ 的背包,每个物品要么选要么不选,它们的体积为 $w_i$,价值为 $v_i$,求总体积至多为 $W$ 情况下能拿走物品价值的最大值。 **【数据范围】** $1\le N \le 100$,$1\le W \le 10^9$,$1 \le w_i \le 10^9$ $w_1 \le w_i \le w_1+3 (i=2,3,\cdots N)$ $1 \le v_i \le 10^7$ $W,w_i,v_i$ 都是整数 翻译:[So_what](https://www.luogu.org/space/show?uid=68706)

加入题单

算法标签: