Problem8349--HDU5887 - Herbs Gathering

8349: HDU5887 - Herbs Gathering

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Collecting one's own plants for use as herbal medicines is perhaps one of the most self-empowering things a person can do, as it implies that they have taken the time and effort to learn about the uses and virtues of the plant and how it might benefit them, how to identify it in its native habitat or how to cultivate it in a garden, and how to prepare it as medicine. It also implies that a person has chosen to take responsibility for their own health and well being, rather than entirely surrender that faculty to another. 
Consider several different herbs. Each of them has a certain time which needs to be gathered, to be prepared and to be processed. Meanwhile a detailed analysis presents scores as evaluations of each herbs. Our time is running out. The only goal is to maximize the sum of scores for herbs which we can get within a limited time.

Input

There are at most ten test cases.
For each case, the first line consists two integers, the total number of different herbs and the time limit.
The i-th line of the following n line consists two non-negative integers. The first one is the time we need to gather and prepare the i-th herb, and the second one is its score.
The total number of different herbs should be no more than 100. All of the other numbers read in are uniform random and should not be more than $10^9$.

Output

For each test case, output an integer as the maximum sum of scores.

Sample 1 Input

3 70
71 100
69 1
1 2

Sample 1 Output

3

HINT

相同题目:HDU 5887

Source/Category