CF BUDDY
← Problems·

1995B2 · Bouquet (Hard Version)

1700 · binary search, data structures, greedy

Problem: This is the hard version of the problem. The only difference is that in this version, instead of listing the number of petals for each flower, the number of petals and the quantity of flowers in the store is set for all types of flowers.

A girl is preparing for her birthday and wants to buy the most beautiful bouquet. There are a total of nn different types of flowers in the store, each of which is characterized by the number of petals and the quantity of this type of flower. A flower with kk petals costs kk coins. The girl has decided that the difference in the number of petals between any two flowers she will use to decorate her cake should not exceed one. At the same time, the girl wants to assemble a bouquet with the maximum possible number of petals. Unfortunately, she only has mm coins, and she cannot spend more. What is the maximum total number of petals she can assemble in the bouquet?

Input Format: Each test consists of several test cases. The first line contains a single integer tt (1t100001 \le t \le 10\,000) — the number of test cases. This is followed by descriptions of the test cases.

The first line of each test case contains two integers nn, mm (1n2105,1m10181 \le n \le 2 \cdot 10^5, 1 \le m \le 10^{18}) — the number of types of flowers in the store and the number of coins the girl possesses, respectively. The second line of each test case contains nn different integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai1091 \le a_i \le 10^9), where aia_i is the number of petals of the ii-th flower type in the store (for different indexes iji \neq j, it must be aiaja_i \neq a_j). The third line of each test case contains nn integers c1,c2,,cnc_1, c_2, \ldots, c_n (1ci1091 \le c_i \le 10^9), where cic_i is the quantity of the ii-th flower type in the store.

The sum of nn over all test cases does not exceed 21052 \cdot {10}^5.

Output Format: For each test case, print one integer — the maximum possible number of petals in a bouquet that a girl can collect, observing all the conditions listed above.

Note: In the first test case, some valid bouquets are (1,1,2,2),(2,2,3),(1,1),(2,2)(1, 1, 2, 2), (2, 2, 3), (1, 1), (2, 2). The maximum over all valid bouquets not greater than 1010 is 77 for (2,2,3)(2, 2, 3). In the second test case, you can assemble a valid bouquet with (206,206,207,207,207)(206, 206, 207, 207, 207) with a sum of 10331033, which is the maximum number of petals the girl can buy. In the third test case, you can assemble a valid bouquet with (5,5,5,4)(5, 5, 5, 4) with a sum of 1919. It can be seen that no valid bouquet can have 2020 petals.

Sample Cases

Case 1

Input

7
3 10
1 2 3
2 2 1
3 1033
206 207 1000
3 4 1
6 20
4 2 7 5 6 1
1 2 1 3 1 7
8 100000
239 30 610 122 24 40 8 2
12 13123 112 1456 124 100 123 10982
6 13
2 4 11 1 3 5
2 2 1 2 2 1
8 10330
206 210 200 201 198 199 222 1000
9 10 11 12 13 14 15 16
2 10000000000
11 12
87312315 753297050

Output

7
1033
19
99990
13
10000
9999999999

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback