标签:des style blog http io ar color os sp
http://acm.hdu.edu.cn/showproblem.php?pid=1556
模板题,没什么好说的,搜了一下这题看见大家都是用树状数组做的,有空学一下。
#include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> #include <algorithm> #define N 1000010 using namespace std; struct node { int l,r,lz,w; } q[4*N]; int n; void pushdown(int rt) { if(q[rt].lz) { q[rt<<1].lz+=q[rt].lz; q[rt<<1|1].lz+=q[rt].lz; q[rt<<1].w+=q[rt].lz; q[rt<<1|1].w+=q[rt].lz; q[rt].lz=0; } } void build(int l,int r,int rt) { q[rt].l=l; q[rt].r=r; q[rt].w=0; q[rt].lz=0; if(l==r) return ; int mid=(l+r)>>1; build(l,mid,rt<<1); build(mid+1,r,rt<<1|1); return ; } void update(int lf,int rf,int l,int r,int rt) { if(lf<=l&&rf>=r) { q[rt].w+=1; q[rt].lz+=1; return ; } pushdown(rt); int mid=(l+r)>>1; if(lf<=mid) update(lf,rf,l,mid,rt<<1); if(rf>mid) update(lf,rf,mid+1,r,rt<<1|1); } void query(int l,int r,int rt) { if(l==r) { if(l==1) printf("%d",q[rt].w); else printf(" %d",q[rt].w); return ; } pushdown(rt); int mid=(l+r)>>1; query(l,mid,rt<<1); query(mid+1,r,rt<<1|1); return ; } int main() { int s1,s2; while(scanf("%d",&n)!=EOF&&n!=0) { build(1,n,1); for(int i=0; i<n; i++) { scanf("%d%d",&s1,&s2); update(s1,s2,1,n,1); } query(1,n,1); printf("\n"); } }
HDU1556:Color the ball(简单的线段树区域更新)
标签:des style blog http io ar color os sp
原文地址:http://www.cnblogs.com/zhangmingcheng/p/4149842.html