#Lutece0074. Bus

Bus

Migrated from Lutece 74 Bus

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

UESTC is moving to the beautiful new campus which locates in the suburb of Chengdu. WCM is taking charge of arranging the buses for the students who are about to move to the new campus. There are two large transportation companies (which we'll call AA and BB) in Chengdu. However, the two transportation companies are very busy, so on any given day they are only able to send limited number of buses.

Here's the problem WCM faces. He gets a list of how many buses are available from each company over each of the next nn days. But he can only contact one of the companies in any given day. On day ii, there are aia_i(ai>0a_i > 0) buses available if he contacts Company AA and there are bib_i(bi>0b_i > 0) buses available if he contacts Company BB. He also has the ability to change from one company to the other, but doing this takes one day in which no buses are available.

So, given a sequence of nn days, a plan is specified by a choice of AA, BB, or change for each day, with the constraint that choice AA and BB cannot appear in consecutive days. For example, if he contacts Company AA in day ii, and he wants to switch to company BB, then his choice for day i+1i+1 must be change, and then his choice for day i+2i+2 can be BB. The value of a plan is the total number of buses that he manages to arrange for the students of UESTC over the nn days: so it's the sum of aia_i over all days in which the buses are available from Company AA, plus the sum of bi over all days in which the buses are available from Company BB.

The problem: Given the values of a1,a2,a3ana_1, a_2, a_3 \cdots a_n and b1,b2,b3bnb_1, b_2, b_3 \cdots b_n, find a plan of the maximum value(Such a plan is called optimal). Note that your plan can start with either of the company AA or BB in day 11.

Example: Suppose n=4n = 4 and the values of aia_i and bib_i are given by the following table.

| Day 1 | Day 2 | Day 3 | Day 4 --- | --- | --- | --- | --- AA | 1111 | 22 | 22 | 99 BB | 44 | 11 | 2121 | 2323

Then the plan of the maximum value would be to choose AA for day 11, then change for day 22, and then BB for day 33 and 44. The value of this plan would be 11+0+21+23=5511+0+21+23=55.

Facing this problem, WCM feels despaired. He asks you for help to solve this problem. Give an efficient algorithm that takes values for a1,a2ana_1, a_2 \cdots a_n and b1,b2bnb_1, b_2 \cdots b_n and returns the value of an optimal plan.

Input

The input contains an integer one the first line, which indicates the number of test cases. Each test case consists of three lines. The first line contains one positive integer nn,(0<n10000000 < n \leq 1000000),which means the number of the days. The second line contains nn positive integer, a1,a2ana_1, a_2 \cdots a_n (0<ai1000 < a_i \leq 100), aia_i means the number of buses which can be available if WCM contacts Company AA in the ithi_{th} day; The third line contains nn positive integer, b1,b2bnb_1, b_2 \cdots b_n,(0<bi1000 < b_i \leq 100), bib_i means the number of buses which can be available if WCM contacts Company BB in the ithi_{th} day.

Output

For each test case, output one number on a line which represents the value of the optimal plan, i.e. the maximum of the number of the available buses over the nn days.

Samples

2
4
11 2 2 9
4 1 21 23
3
1 3 1
7 7 7
55
21

Resources

The 5th UESTC Programming Contest Final