1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| #include <cstdio> #include <iostream> using namespace std; const int N=(1<<17)+5; const int NN=(N<<2); int n,m,a[N],s[NN]; void build(int p,int l,int r,int t){ if(l==r){ s[p]=a[l]; return; } int mid=(l+r)>>1; build(p<<1,l,mid,t+1); build(p<<1|1,mid+1,r,t+1); if(t&1)s[p]=s[p<<1]|s[p<<1|1]; else s[p]=s[p<<1]^s[p<<1|1]; } int update(int x,int y){ x=(1<<n)-1+x; s[x]=y; x>>=1; int t=1; while(x){ if(t&1)s[x]=s[x<<1]|s[x<<1|1]; else s[x]=s[x<<1]^s[x<<1|1]; t++; x>>=1; } return s[1]; } int main(){ scanf("%d%d",&n,&m); for(int i=1;i<=(1<<n);i++){ scanf("%d",&a[i]); } build(1,1,(1<<n),n&1);
for(int i=1;i<=m;i++){ int p,q; scanf("%d%d",&p,&q); printf("%d\n",update(p,q)); } return 0; }
|