//g++ 2.cpp -std=c++14 -O2 -I . #include using namespace std; #include using namespace atcoder; using ll = long long; using ld = long double; using vi = vector; using vvi = vector; using vll = vector; using vvll = vector; using vld = vector; using vvld = vector; using vst = vector; using vvst = vector; #define fi first #define se second #define pb push_back #define eb emplace_back #define pq_big(T) priority_queue,less> #define pq_small(T) priority_queue,greater> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; vi x(n),a(n); rep(i,0,n)cin>>x[i]; rep(i,0,n)cin>>a[i]; map g; vi st; rep(i,0,n){ g[x[i]+a[i]].emplace_back(x[i]); g[x[i]-a[i]].emplace_back(x[i]); st.emplace_back(x[i]-a[i]); st.emplace_back(x[i]+a[i]); } uniq(st); reverse(all(st)); map opt; for(int v:st){ opt[v]=v; } for(int v:st){ queue que; que.push(v); while(!que.empty()){ int fr=que.front(); que.pop(); for(int nxt:g[fr]){ if(opt[nxt]