#include using namespace std; #define REP(i,n) for(int i=0;i<(int)(n);++i) #define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i) #define ALL(c) (c).begin(), (c).end() #define valid(y,x,h,w) (0<=y&&y pii; templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (bostream&operator<<(ostream &o,const vector&t){o<<'[';FOR(i,t){if(i!=t.begin())o<<',';o<<*i;}return o<<']';} templateostream&operator<<(ostream &o,const pair&t){return o<<'('<void output(ostream&,const Tp&){} templatevoid output(ostream &o,const Tp&t){if(N)o<<',';o<(t);output(o,t);} templateostream&operator<<(ostream&o,const tuple&t){o<<'(';output<0,tuple,Ts...>(o,t);return o<<')';} templatevoid output(T t,char z=10){if(t<0)t=-t,putchar(45);int c[20]; int k=0;while(t)c[k++]=t%10,t/=10;for(k||(c[k++]=0);k;)putchar(c[--k]^48);putchar(z);} templatevoid outputs(T t){output(t);} templatevoid outputs(S a,T...t){output(a,32);outputs(t...);} templatevoid output(T *a,int n){REP(i,n)output(a[i],i!=n-1?',':10);} templatevoid output(T *a,int n,int m){REP(i,n)output(a[i],m);} templatebool input(T &t){int n=1,c;for(t=0;!isdigit(c=getchar())&&~c&&c-45;); if(!~c)return 0;for(c-45&&(n=0,t=c^48);isdigit(c=getchar());)t=10*t+c-48;t=n?-t:t;return 1;} templatebool input(S&a,T&...t){input(a);return input(t...);} templatebool inputs(T *a, int n) { REP(i,n) if(!input(a[i])) return 0; return 1;} ll modNorm(ll a, ll m) { return (a%m+m)%m; } ll extgcd(ll a, ll b, ll &x, ll &y) { ll g = a; x = 1; y = 0; if (b) { g = extgcd(b, a%b, y, x); y -= (a/b) * x; } return g; } ll invMod(ll a, ll p) { ll x, y; if (extgcd(a,p,x,y) == 1) return (x+p)%p; return 0; } typedef vector Vec; typedef vector Mat; ostream &operator<<(ostream &os, const Vec &a) { FOR(it, a) os << setw(6) << *it << " "; return os; } ostream &operator<<(ostream &os, const Mat &a) { FOR(it, a) os << *it << endl; return os; } bool modGaussElimination(const Mat &A, const Vec &b, int m, Vec &res) { int n = A.size(); Mat B(n, Vec(n+1)); REP(i,n) REP(j,n) B[i][j] = A[i][j]; REP(i, n) B[i][n] = b[i]; //cout << B << endl; int nowy = 0; REP(x, n) { int pivot = -1; for (int j=nowy; j=0; --y) { int x; for (x=y; x=0; --x) { int sum = B[x][n]; for (int i=n-1; i>x; --i) { sum = modNorm(sum - res[i] * B[x][i], m); } res[x] = sum * invMod(B[x][x], m) % m; } return 1; } int main() { int n; while(cin >> n) { Mat A(n,Vec(n)); vector d(n); Vec w(n); REP(i,n) input(d[i]); REP(i,n) { input(w[i]); w[i] = !w[i]; } REP(i,n) { A[i][(i+d[i])%n] = 1; A[i][((i-d[i])%n+n)%n] = 1; } Vec res; modGaussElimination(A,w,2,res); if (res.size()) puts("Yes"); else puts("No"); } }