#include using namespace std; const int N=1e5+5; int n,mx=0,b[N]; vector ve[N]; bitset<2*N> bs,ans; int main() { ios::sync_with_stdio(false); cin.tie(nullptr),cout.tie(nullptr); cin>>n; for(int i=1; i<=n; i++) { int a; cin>>a;mx=max(mx,a); ve[a].push_back(i); } for(int i=1; i<=n; i++) cin>>b[i]; for(int i=1; i<=n; i++) if(b[i]) bs[i]=1; for(int i=1; i<=mx; i++) { if(!ve[i].size()) continue; bitset<2*N> bst; for(int j=0; j