luogu P2574 XOR的藝術
阿新 • • 發佈:2019-01-30
題意:
有一個長度為n的01序列,現在有兩種操作。
[1]:將x~y區間的數都異或1。
[2]:求x^y的區間和。
思路:
改一改updata,就是模板題了。
程式碼:
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; int n,m,len=0; struct node{int d,n,lazy,l,r,lc,rc;} tr[400010]; char s[200010]; void build(int l,int r) { int now=++len,mid=(l+r)>>1; tr[now].l=l; tr[now].r=r; tr[now].n=r-l+1; tr[now].lazy=0; tr[now].lc=tr[now].rc=-1; if(l<r) { tr[now].lc=len+1; build(l,mid); tr[now].rc=len+1; build(mid+1,r); } } void updata(int now) { if(tr[now].lazy) { int lc=tr[now].lc,rc=tr[now].rc; if(lc!=-1) tr[lc].d=tr[lc].n-tr[lc].d,tr[lc].lazy^=1; if(rc!=-1) tr[rc].d=tr[rc].n-tr[rc].d,tr[rc].lazy^=1; tr[now].lazy=0; } } void change(int now,int l,int r,int k) { updata(now); if(l==tr[now].l&&r==tr[now].r) { tr[now].d=k==-1?tr[now].n-tr[now].d:k; tr[now].lazy^=1; return; } int lc=tr[now].lc,rc=tr[now].rc,mid=(tr[now].l+tr[now].r)>>1; if(r<=mid) change(lc,l,r,k); else if(l>mid) change(rc,l,r,k); else change(lc,l,mid,k),change(rc,mid+1,r,k); tr[now].d=tr[lc].d+tr[rc].d; } int findsum(int now,int l,int r) { updata(now); if(l==tr[now].l&&r==tr[now].r) return tr[now].d; int lc=tr[now].lc,rc=tr[now].rc,mid=(tr[now].l+tr[now].r)>>1; if(r<=mid) return findsum(lc,l,r); else if(l>mid) return findsum(rc,l,r); else return findsum(lc,l,mid)+findsum(rc,mid+1,r); } int main() { int t,x,y; scanf("%d %d",&n,&m); scanf("%s",s+1); build(1,n); for(int i=1;i<=n;i++) change(1,i,i,s[i]-48); for(int i=1;i<=m;i++) { scanf("%d %d %d",&t,&x,&y); if(!t) change(1,x,y,-1); else printf("%d\n",findsum(1,x,y)); } }