#P1629A. Download More RAM
Download More RAM
No submission language available for this problem.
Description
Did you know you can download more RAM? There is a shop with different pieces of software that increase your RAM. The -th RAM increasing software takes GB of memory to run (temporarily, once the program is done running, you get the RAM back), and gives you an additional GB of RAM (permanently). Each software can only be used once. Your PC currently has GB of RAM.
Note that you can't use a RAM-increasing software if it takes more GB of RAM to use than what you currently have.
Since RAM is the most important thing in the world, you wonder, what is the maximum possible amount of RAM achievable?
The first line of the input contains a single integer () — the number of test cases. The description of test cases follows.
The first line of each test case contains the integers and (, ). Then two lines follow, each containing integers describing the arrays and ().
For each test case, output a single line containing the largest amount of RAM you can achieve.
Input
The first line of the input contains a single integer () — the number of test cases. The description of test cases follows.
The first line of each test case contains the integers and (, ). Then two lines follow, each containing integers describing the arrays and ().
Output
For each test case, output a single line containing the largest amount of RAM you can achieve.
Samples
Note
In the first test case, you only have enough RAM to run the third software initially, but that increases your RAM to GB, which allows you to use the first software, increasing your RAM to GB. The only software left needs GB of RAM, so you have to stop here.
In the second test case, you can use the first, second, fourth and fifth software that need only GB of RAM per software to run to increase your RAM to GB, and then use the last remaining one to increase your RAM to GB.
In the third test case, all the software need more than GB of RAM to run, so the amount of RAM you have stays at GB.