Score : $500$ points
You are going to eat $X$ red apples and $Y$ green apples.
You have $A$ red apples of deliciousness $p_1,p_2, \dots, p_A$, $B$ green apples of deliciousness $q_1,q_2, \dots, q_B$, and $C$ colorless apples of deliciousness $r_1,r_2, \dots, r_C$.
Before eating a colorless apple, you can paint it red or green, and it will count as a red or green apple, respectively.
From the apples above, you will choose the apples to eat while making the sum of the deliciousness of the eaten apples as large as possible.
Find the maximum possible sum of the deliciousness of the eaten apples that can be achieved when optimally coloring zero or more colorless apples.
Input is given from Standard Input in the following format:
$X$ $Y$ $A$ $B$ $C$ $p_1$ $p_2$ $...$ $p_A$ $q_1$ $q_2$ $...$ $q_B$ $r_1$ $r_2$ $...$ $r_C$
Print the maximum possible sum of the deliciousness of the eaten apples.
1 2 2 2 1 2 4 5 1 3
12
The maximum possible sum of the deliciousness of the eaten apples can be achieved as follows:
2 2 2 2 2 8 6 9 1 2 1
25
2 2 4 4 4 11 12 13 14 21 22 23 24 1 2 3 4
74