SOLVE
LATER
Iron Man and Captain America start for a mission from Isengard to Middle-Earth. There are two different tracks from Isengard to Middle-Earth. Each track has N toll taxes where they have to pay and in between they can change track from any toll but for that they have to pay extra. By changing track from ith toll of first track one can reach (i+1)th toll of second track and vice versa. All you have to calculate is minimum cost required to reach from Isengard to Middle-Earth.
The first line of input contains an integer T, the number of Test Cases.
The second line of input contains an integer N, denoting the number of tolls.
The third line of input contains N space separated integers, denoting the amount to pay at ith toll in first track.
The Fourth line of input contains N space separated integers, denoting the amount to pay at ith toll in second track.
The Next line of input contains N-1 space separated integers, denoting the amount to pay on changing track from ith toll of first track to (i+1)th toll in second track.
The Next line of input contains N-1 space separated integers, denoting the amount to pay on changing track from ith toll of second track to (i+1)th toll of first track.
Output of each testcase will consist of a single integer denoting minimum cost required for bike trip from Leh to Ladakh.
1 <= T <= 100
1 <= N <= 100000
1 <= Amount to pay at any point <= 100000
Sample case 1 :- path of minimum cost will be 1st toll of second track --> 2nd toll of first track.total amount = 5 + 7 + 6 = 18. Here 7 is extra amount to pay on changing track from 1st toll of second track to 2nd toll of first track.