bzoj:1230: [Usaco2008 Nov]lites 开关灯
Description
Farmer John尝试通过和奶牛们玩益智玩具来保持他的奶牛们思维敏捷. 其中一个大型玩具是牛栏中的灯. N (2 <= N <= 100,000) 头奶牛中的每一头被连续的编号为1..N, 站在一个彩色的灯下面.刚到傍晚的时候, 所有的灯都是关闭的. 奶牛们通过N个按钮来控制灯的开关; 按第i个按钮可以改变第i个灯的状态.奶牛们执行M (1 <= M <= 100,000)条指令, 每个指令都是两个整数中的一个(0 <= 指令号 <= 1). 第1种指令(用0表示)包含两个数字S_i和E_i (1 <= S_i <= E_i <= N), 它们表示起始开关和终止开关. 奶牛们只需要把从S_i到E_i之间的按钮都按一次, 就可以完成这个指令. 第2种指令(用1表示)同样包含两个数字S_i和E_i (1 <= S_i <= E_i <= N), 不过这种指令是询问从S_i到E_i之间的灯有多少是亮着的. 帮助FJ确保他的奶牛们可以得到正确的答案.
Input
* 第 1 行: 用空格隔开的两个整数N和M
* 第 2..M+1 行: 每行表示一个操作, 有三个用空格分开的整数: 指令号, S_i 和 E_i
Output
第 1..询问的次数 行: 对于每一次询问, 输出询问的结果.
Sample Input
4 5
0 1 2
0 2 4
1 2 3
0 2 4
1 1 4
0 1 2
0 2 4
1 2 3
0 2 4
1 1 4
Sample Output
1
2
2
好久没写标记了……水题不解释……
#include<cstdio> #include<algorithm> using namespace std; struct tree{ int l,r,m; bool f; }t[450001]; int n,m,c,l,r,ra,an[9]; char rx; inline int read(){ rx=getchar();ra=0; while(rx<'0'||rx>'9') rx=getchar(); while(rx>='0'&&rx<='9') ra=ra*10+rx-48,rx=getchar();return ra; } inline void pr(int t){ if (!t) putchar('0');else{ for (an[0]=0;t;t/=10){ an[0]++; an[an[0]]=t%10; } while(an[0]--) putchar(an[an[0]+1]+48); } putchar('\n'); } inline void hb(int x){ t[x].f^=1; } inline void xc(int x){ if (t[x].f){ t[x].m=t[x].r-t[x].l+1-t[x].m; t[x].f=0; if (t[x].l<t[x].r) hb((x<<1)),hb((x<<1)|1); } } inline int qu(int x,int l,int r){ xc(x); if (t[x].l==l&&t[x].r==r) return t[x].m; int mid=(t[x].l+t[x].r)>>1; if (r<=mid) return qu((x<<1),l,r);else if (l>mid) return qu((x<<1)|1,l,r);else return qu((x<<1),l,mid)+qu((x<<1)|1,mid+1,r); } inline void change(int x,int l,int r){ xc(x); if (t[x].l==l&&t[x].r==r){ t[x].f=1; return; } int mid=(t[x].l+t[x].r)>>1; if (r<=mid) change((x<<1),l,r);else if (l>mid) change((x<<1)|1,l,r);else change((x<<1),l,mid),change((x<<1)|1,mid+1,r); xc(x<<1);xc((x<<1)|1); t[x].m=t[x<<1].m+t[(x<<1)|1].m; } inline void build(int x,int l,int r){ t[x].l=l;t[x].r=r;t[x].f=t[x].m=0; if (l==r) return; int mid=(l+r)>>1; build(x<<1,l,mid); build((x<<1)|1,mid+1,r); } int main(){ n=read();m=read(); build(1,1,n); while (m--){ c=read();l=read();r=read(); if (!c){ change(1,l,r); }else{ pr(qu(1,l,r)); } } }