C - A Simple Problem with Integers POJ - 3468 线段树模版(区间查询区间修改)

参考qsc大佬的视频 太强惹 先膜一下 视频在b站 直接搜线段树即可

 1 #include<cstdio>
 2 using namespace std;
 3 const int maxn=1e5+6;
 4 int n,a[maxn];
 5 struct Node{
 6     int l,r;
 7     long long sum,lazy;
 8     void update(long long x){//用于更新区间和 和懒标记
 9         sum+=1ll*(r-l+1)*x;
10         lazy+=x;
11     }
12 }tree[maxn*4];
13 void push_up(int x){//用于用子区间重新计算该区间的区间和
14     tree[x].sum=tree[x<<1].sum+tree[x<<1|1].sum;
15 }
16 void push_down(int x){//把lazy标记往下面传递
17     int lazyval=tree[x].lazy;
18     if(lazyval){
19         tree[x<<1].update(lazyval);
20         tree[x<<1|1].update(lazyval);
21         tree[x].lazy=0;
22     }
23 }
24 void build(int x,int l,int r){//建树
25     tree[x].l=l,tree[x].r=r;
26     tree[x].sum=tree[x].lazy=0;
27     if(l==r){
28         tree[x].sum=a[l];
29     }
30     else {
31         int mid=l+r>>1;
32         build(x<<1,l,mid);
33         build(x<<1|1,mid+1,r);
34         push_up(x);
35     }
36 }
37 void update(int x,int l,int r,long long val){//区间修改
38     int L=tree[x].l,R=tree[x].r;
39     if(l<=L&&R<=r){//完全包含直接修改就行
40         tree[x].update(val);
41     }
42     else {//push_down 把懒标记往下面传
43         push_down(x);//不是完全包含 继续往下面修改包含的区间l ,r 不用改它是用来判断当前区间位不位于要修改的区间里面的,如果位于那么就要修改
44         int mid=L+R>>1;
45         if(mid>=l)update(x<<1,l,r,val);
46         if(r>mid)update(x<<1|1,l,r,val);
47         push_up(x);//已经更新好了子区间重新计算区间和
48     }
49 }
50 long long query(int x,int l,int r){//查询l,r区间 x是节点标号 和上面update类似
51     int L=tree[x].l,R=tree[x].r;
52     if(l<=L&&R<=r){
53         return tree[x].sum;
54     }
55     else {
56         push_down(x);
57         long long ans=0;
58         int mid=L+R>>1;
59         if(mid>=l)ans+=query(x<<1,l,r);
60         if(r>mid)ans+=query(x<<1|1,l,r);
61         push_up(x);
62         return ans;
63     }
64 }
65 int main(){
66     int q;
67     scanf("%d%d",&n,&q);
68     for(int i=1;i<=n;i++)scanf("%d",&a[i]);
69     build(1,1,n);
70     for(int i=1;i<=q;i++){
71         int l,r,val;
72         char op[10];
73         scanf("%s",op);
74         if(op[0]==‘C‘){
75         scanf("%d%d%d",&l,&r,&val);
76         update(1,l,r,val);
77         }
78         else {
79         scanf("%d%d",&l,&r);
80         printf("%lld\n",query(1,l,r));
81         }
82     }
83
84     return 0;
85 }

原文地址:https://www.cnblogs.com/ttttttttrx/p/10292725.html

时间: 2024-10-07 08:20:50

C - A Simple Problem with Integers POJ - 3468 线段树模版(区间查询区间修改)的相关文章

A Simple Problem with Integers POJ - 3468 (线段树)

思路:线段树,区间更新,区间查找 1 #include<iostream> 2 #include<vector> 3 #include<string> 4 #include<cmath> 5 #include<set> 6 #include<algorithm> 7 #include<cstdio> 8 #include<map> 9 #include<cstring> 10 #include<

A Simple Problem with Integers POJ - 3468 线段树区间修改+区间查询

//add,懒标记,给以当前节点为根的子树中的每一个点加上add(不包含根节点) // #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; typedef long long LL; const int N = 100010; int n, m; int w[N]; struct Node { int l, r;

A Simple Problem with Integers poj 3468 多树状数组解决区间修改问题。

A Simple Problem with Integers Time Limit: 5000MS   Memory Limit: 131072K Total Submissions: 69589   Accepted: 21437 Case Time Limit: 2000MS Description You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of

C - A Simple Problem with Integers POJ 3468

C - A Simple Problem with Integers Time Limit:5000MS Memory Limit:131072KB 64bit IO Format:%I64d & %I64u Submit Status Practice POJ 3468 Description You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of ope

hdu 4267 A Simple Problem with Integers(树形结构-线段树)

A Simple Problem with Integers Time Limit: 5000/1500 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3708    Accepted Submission(s): 1139 Problem Description Let A1, A2, ... , AN be N elements. You need to deal with

A Simple Problem with Integers POJ 3468

题目链接:   http://poj.org/problem?id=3468 题意: 给出一个序列,然后会有两种操作,一是让下标从 i - j 都增加 某个固定值, 二是询问你下标从 m - n 这个区域的和是多少? #include <iostream> #include <cstdlib> #include <cstdio> #include <algorithm> #include <vector> #include <queue&g

C - A Simple Problem with Integers - poj 3468(区间更新)

题意:有一个比较长的区间可能是100000.长度, 每个点都有一个值(值还比较大),现在有一些操作,C abc, 把区间a-b内全部加上c, Qab,求区间ab的值. 分析:很明显我们不可能对区间的每个点都进行更新,不过我们可以使用一个op的开关,如果op等于0说明这个不需要更新,如果等于1就说明需要进行更新,这样只需要和插入的时候进行一下更新即可 *********************************************************************** 注意

A Simple Problem with Integers POJ - 3468 区间更新,区间查询板子

#include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #include<algorithm> #include<cmath> #include<queue> #include<list> #include<math.h> #include<vector> #include<stack>

poj 3468 线段树成段更新

http://poj.org/problem?id=3468 A Simple Problem with Integers Time Limit: 5000MS   Memory Limit: 131072K Total Submissions: 58132   Accepted: 17704 Case Time Limit: 2000MS Description You have N integers, A1, A2, ... , AN. You need to deal with two k