#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define f(i,n) for(ll i=0;i<n;i++)
#define m(a,b,c) max(a,max(b,c))
#define N ll n;cin >> n;
#define Nk ll n,k;cin >> n >> k;
#define A ll a[n];f(i,n) cin >> a[i];
#define FAST_IO ios_base::sync_with_stdio(false), cin.tie(nullptr);
#define YES cout<<"YES"<<endl;
#define NO cout<<"NO"<<endl;
#define S string s;cin>>s;
#define pb push_back
int main()
{
FAST_IO;
ll t;
cin>>t;
while(t--)
{
N;
ll a[3][n+1];
ll p[n+1]={0};
ll q[n+1]={0};
memset(a,0,sizeof(a));
for(ll i=1;i<=2;i++)
{
for(ll j=1;j<=n;j++)
{
ll x;
cin>>x;
a[i][j]=x;
if(j!=1 && j!=n && x+j<0)
{
x=-j;
}
if(i==1)
p[j]=x;
else
q[j]=x;
}
}
ll dp[3][n+1];
memset(dp,0,sizeof(dp));
for(ll j=2;j<=n;j++)
{
dp[1][j]=dp[1][j-1]+p[j-1];
}
ll c[n+1]={0};
c[1]=a[1][1];
for(ll j=2;j<=n;j++)
{
c[j]=dp[1][j]+a[1][j];
}
dp[2][1]=a[1][1]+a[2][1];
ll d[n+1]={0};
d[1]=a[1][1]+a[2][1];
for(ll j=2;j<=n;j++)
{
dp[2][j]=fmax(dp[2][j-1],d[j-1])+q[j];
d[j]=fmax(fmax(c[j],dp[2][j-1]),d[j-1])+a[2][j];
}
cout<<d[n]<<endl;
}
return 0;
}