#include<bits/stdc++.h>
using namespace std;
const long long M=2e5+10,MOD=2000000007;
typedef long long ll;
int fre[26][M];
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t=1;
cin>>t;
while(t--){
int n;
// cin>>n;
int t1,t2;
cin>>t1>>t2>>n;
vector<int>a(n),b(n);
int mx=MOD;
for(auto &i:a)cin>>i;
for(auto &i:b)cin>>i;
int c=a[n-1];
for(int i=0;i<n;i++){
int cur_pos=c-a[i];
if(cur_pos==a[i])continue;
if(a[i]<cur_pos){
if(b[i]>t1 || b[i]>t2){
mx=min(mx,cur_pos-a[i]);
}
}
if(a[i]>cur_pos){
if(b[i]>t2 || b[i]>t1)mx=min(mx,a[i]-cur_pos);
}
}
if(mx==MOD)mx=-1;
cout<<mx<<"\n";
}
return 0;
}