CF1749B.Death's Blessing

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Death's Blessing

You are playing a computer game. To pass the current level, you have to kill a big horde of monsters. In this horde, there are nn monsters standing in the row, numbered from 11 to nn. The ii-th monster has aia_i health and a special "Death's Blessing" spell of strength bib_i attached to it.

You are going to kill all of them one by one. It takes exactly hh seconds to kill a monster with health hh.

When the ii-th monster dies, it casts its spell that increases the health of its neighbors by bib_i (the neighbors of the jj-th monster in the row are the monsters on places j1j - 1 and j+1j + 1. The first and the last monsters have only one neighbor each).

After each monster is killed, the row shrinks, so its former neighbors become adjacent to each other (so if one of them dies, the other one is affected by its spell). For example, imagine a situation with 44 monsters with health a=[2,6,7,3]a = [2, 6, 7, 3] and spells b=[3,6,0,5]b = [3, 6, 0, 5]. One of the ways to get rid of the monsters is shown below:

22 66 77 33 6 s\xrightarrow{6\ s} 88 1313 33 13 s\xrightarrow{13\ s} 88 33 8 s\xrightarrow{8\ s} 66 6 s\xrightarrow{6\ s} {}\{\}
33 66 00 55 33 00 55 33 55

The first row represents the health of each monster, the second one — the power of the spells.

As a result, we can kill all monsters in 6+13+8+66 + 13 + 8 + 6 == 3333 seconds. Note that it's only an example and may not be the fastest way to get rid of the monsters.

What is the minimum time required to kill all monsters in the row?

Input

The first line contains a single integer tt (1t1041 \le t \le 10^4) — the number of test cases.

The first line of each test case contains a single integer nn (1n21051 \le n \le 2 \cdot 10^5) — the number of monsters in the row.

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n (1ai1091 \le a_i \le 10^9) — the initial health of corresponding monsters.

The third line contains nn integers b1,b2,,bnb_1, b_2, \dots, b_n (0bi1090 \le b_i \le 10^9), where bib_i is the strength of the spell for the ii-th monster.

It's guaranteed that the sum of nn doesn't exceed 21052 \cdot 10^5.

Output

For each test case, print one integer — the minimum possible total time to kill all monsters.

Note

In the first test case, there is only one monster that will be killed in 1010 seconds.

In the second test case, it's optimal to kill the first monster, the last monster and then the middle one. It will take 100+100+(1+1+1)100 + 100 + (1 + 1 + 1) == 203203 seconds.

In the third test case, it's optimal to kill the first monster, then the third one, then the fourth one and finally the second one. It will take 2+7+(3+0)+(3+6+5)2 + 7 + (3 + 0) + (3 + 6 + 5) == 2626 seconds.

Samples

4
1
10
0
3
100 1 100
1 100 1
4
2 6 7 3
3 6 0 5
2
1000000000 1000000000
1000000000 1000000000
10
203
26
3000000000

在线编程 IDE

建议全屏模式获得最佳体验