#P2022F. Examination
Examination
Examination
Time limit: 1 seconds
Memory limit: 512 megabytes
Problem Statement
There are many problems in the math exam of PKU winter camp. All the problems are divided into groups. In the -th group there are problems, you can get points by solving each of them and bonus points by solving all the problems in this group.
You are going to take part in the PKU winter camp and you want to know how many problems you need to solve at least to get points?
Input
The first line contains two integers denoting the groups of the exam and the points you want to get at least.
In the following lines, each line contains three integers $p_i,s_i,c_i(2\leq p_i\leq 100,1\leq c_i\leq 1000,1\leq s_i\leq 100)$ denoting there are problems in the -th group, the basic points of each problem and the bonus points of solving all the problems in this group.
Output
Print a single integer, denoting the answer to the question.
2 7
3 1 5
5 2 8
3
Notes
One possible solution: solve all the problems of the first group, and you can get points.