#include #include #include #include using namespace std; using ll=long long; #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N; cin>>N; vectorD(N); for(int i=0;i>D[i]; vectorW(N); for(int i=0;i>W[i]; vector>G(N); vectorcheck(N); for(int i=0;iflag(N); for(int i=0;iq; flag[i]=true; q.push(i); int cnt=0; if(W[i]==0)cnt++; bool ok=false; while(q.size()){ int x=q.front(); q.pop(); for(auto j:G[x]){ if(flag[j])continue; if(check[j])ok=true; flag[j]=true; q.push(j); if(W[j]==0)cnt++; } } if(!ok&&cnt%2==1){ cout<<"No"<<"\n"; return 0; } } cout<<"Yes"<<"\n"; }