标签:style blog class code c int
题目大意:
给出N个数
0 操作 把 l ----- r之间的数全部开平方
1 操作 输出 l -----r 之间的和
思路分析:
判断区间里的数字是否全相同。如果相同,
将cov 置为该数
查询的时候和更新的时候,如果碰到cov != -1 的 就直接返回就可以了
#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <cmath> #define maxn 200005 #define lson num<<1,s,mid #define rson num<<1|1,mid+1,e typedef long long LL; using namespace std; LL cov[maxn<<2]; void pushup(int num) { if(cov[num<<1]==cov[num<<1|1])cov[num]=cov[num<<1]; else cov[num]=-1; } void pushdown(int num) { if(cov[num]!=-1) { cov[num<<1]=cov[num<<1|1]=cov[num]; cov[num]=-1; } } void build(int num,int s,int e) { cov[num]=-1; if(s==e) { scanf("%lld",&cov[num]); return ; } int mid=(s+e)>>1; build(lson); build(rson); pushup(num); } void update(int num,int s,int e,int l,int r) { if(l<=s && r>=e) { if(cov[num]!=-1) { cov[num]=(LL)sqrt(cov[num]*1.0); return; } } int mid=(s+e)>>1; pushdown(num); if(l<=mid)update(lson,l,r); if(r>mid)update(rson,l,r); pushup(num); } LL query(int num,int s,int e,int l,int r) { if(cov[num]!=-1)return cov[num]*(r-l+1); if(l<=s && r>=e) { if(cov[num]!=-1) return cov[num]*(e-s+1); } int mid=(s+e)>>1; pushdown(num); if(r<=mid)return query(lson,l,r); else if(l>mid)return query(rson,l,r); else return query(lson,l,mid)+query(rson,mid+1,r); } int main() { int CASE=1; int n; while(scanf("%d",&n)!=EOF) { build(1,1,n); int m; scanf("%d",&m); printf("Case #%d:\n",CASE++); while(m--) { int op,l,r; scanf("%d%d%d",&op,&l,&r); if(l>r)swap(l,r); if(op) { printf("%lld\n",query(1,1,n,l,r)); } else update(1,1,n,l,r); } puts(""); } return 0; }
SPOJ GSS4 Can you answer these queries IV (线段树),布布扣,bubuko.com
SPOJ GSS4 Can you answer these queries IV (线段树)
标签:style blog class code c int
原文地址:http://blog.csdn.net/u010709592/article/details/26082917