Watching CPL Codechef January 2021 solution || Watching CPL codechef problem editorial 2021-
Problem statement-
Get excited, folks, because it is time for the final match of Codechef Premier League (CPL)!
Mike and Tracy also want to watch the grand finale, but unfortunately, they could not get tickets to the match. However, Mike is not someone who gives up so easily — he has a plan to watch the match.
The field where the match is played is surrounded by a wall with height . Outside, there are boxes (numbered through ). For each valid , the -th box has a height .
Mike wants to take some boxes and stack them on top of each other to build two towers. The height of each tower is the sum of heights of all the boxes that form it. Of course, no box may be in both towers. The height of each tower should be at least . Then Mike can climb on top of one tower and Tracy on top of the other, and they can watch the match uninterrupted!
While Mike is busy stacking the boxes, Tracy would like to know the smallest number of boxes required to build two towers such that each of them has height at least , or at least that it is impossible to build such towers. Can you help Tracy?
Input
- The first line of the input contains a single integer denoting the number of test cases. The description of test cases follows.
- The first line of each test case contains two space-separated integers and .
- The second line contains space-separated integers .
Output
For each test case, print a single line containing one integer — the smallest number of boxes required to build two towers, or if it is impossible.
Constraints
- for each valid
Subtasks
Subtask #1 (30 points):
- for each valid
Subtask #2 (70 points): original constraints
Example Input
2
8 38
7 8 19 7 8 7 10 20
4 5
2 10 4 9
Example Output
7
2
Explanation
Example case 1: The first tower can be built with boxes and the second tower with boxes . In this case, the box with height is left unused.
Example case 2: We only need the box with height for one tower and the box with height for the other tower.
Comments
Post a Comment