線段樹模板

2021-08-21 04:50:12 字數 1316 閱讀 5941

如題,已知乙個數列,你需要進行下面兩種操作:

1.將某區間每乙個數加上x

2.求出某區間每乙個數的和

第一行包含兩個整數n、m,分別表示該數列數字的個數和操作的總個數。

第二行包含n個用空格分隔的整數,其中第i個數字表示數列第i項的初始值。

接下來m行每行包含3或4個整數,表示乙個操作,具體如下:

操作1: 格式:1 x y k 含義:將區間[x,y]內每個數加上k

操作2: 格式:2 x y 含義:輸出區間[x,y]內每個數的和

輸出包含若干行整數,即為所有操作2的結果。

#include "iostream"

#include "cstdio" 

#include "cstdlib" 

#include "cmath" 

#include "cstring" 

#include "algorithm" 

using namespace std; 

#define maxn 131072 

#define lson rt<<1

#define rson rt<<1|1 

#define data(x) tree[x].data 

#define lside(x) tree[x].l 

#define rside(x) tree[x].r 

#define sign(x) tree[x].c 

#define width(x) (rside(x)-lside(x)+1) 

struct nodetree[maxn<<1]; 

void pushup(int rt)

void pushdown(int rt)

void buildtree(int l,int r,int rt)

int m=l+r>>1; //計算中點

buildtree(l,m,lson); //遞迴左子節點 

buildtree(m+1,r,rson); //遞迴右子節點 

pushup(rt); //更新當前data

}void update(int l,int r,long long c,int rt)

pushdown(rt); //標誌下傳 

int m=lside(rt)+rside(rt)>>1; //計算中點

if(l<=m)update(l,r,c,lson); //左界小於中點,遞迴左子 

if(m>1; //計算中點 

long long ans=0;

if(l<=m)ans+=query(l,r,lson); //左界小於中點,遞迴左子

if(m

線段樹模板(模板)

參考部落格 持續更新。外鏈轉存失敗,源站可能有防盜煉機制,建議將儲存下來直接上傳 img xhrgdjcd 1613976863463 區間儲存在陣列中的下標對應為 12 3 4 5 6 7 8 9 10 11 12 13 14 15 四部分單點更新 根據題目的要求編寫自己的pushup,query...

線段樹模板

include include include using namespace std const int size 10010 struct node the node of line tree class linetree void updatem void updateline public ...

線段樹模板

單點更新,區間求最值 include include include include include define n 222222 using namespace std int num n struct tree tree n 4 void push up int root void build...