第一行输入包含一个整数$ t $ ( $ 1 \le t \le 1000 $ ) — 测试用例的数量。
每个测试用例的第一行包含两个整数,$ m $ and $ x $ ( $ 1 \le m \le 50 $ , $ 1 \le x \le 10^8 $ ) --总月数和月薪。
以下m行中的第i行包含两个整数,
$ c_i $ and $ h_i $ ( $ 0 \le c_i \le 10^8 $ , $ 1 \le h_i \le 10^3 $ ) --第个月的成本和幸福感。请注意,有些幸福可能是免费的。
The first line of each test case contains two integers, — the total number of months and the monthly salary.
The $ i $ -th of the following $ m $ lines contains two integers, $ c_i $ and $ h_i $ ( $ 0 \le c_i \le 10^8 $ , $ 1 \le h_i \le 10^3 $ ) — the cost and happiness on offer for the $ i $ -th month. Note that some happiness may be free ( $ c_i=0 $ for some $ i $ 's).
It is guaranteed that the sum of $ \sum_i h_i $ over all test cases does not exceed $ 10^5 $ .