#include using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template using V=vector; template using VV=V>; //B(n,V(n)) int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; V A(n),B(n); rep(i,n) cin>>A[i]; rep(i,n) cin>>B[i]; bitset<200000> b,res; rep(i,n) if(B[i]) b.set(i); map> m; rep(i,n) m[A[i]].push_back(i); for(auto [a,C]:m){ int c=C.size(); bitset<200000> tmp,d; rep(i,c){ d=(b<