線段樹模板

2021-10-03 17:07:35 字數 1184 閱讀 2830

#include #define _for(i,a,b) for(int i=a;i> 1;

//左右遞迴

build(l, m, rt << 1);

build(m + 1, r, rt << 1 | 1);

pushup(rt);

}//點修改

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

int m = (l + r) >> 1;

//根據條件判斷往左子樹呼叫還是右

if (l <= m) update(l, c, l, m, rt << 1);

else update(l, c, m + 1, r, rt << 1 | 1);

pushup(rt);

}//區間修改

void pushdown(int rt, int ln, int rn);

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

int m = (l + r) >> 1;

pushdown(rt, m - l + 1, r - m);//下推標記

//這裡判斷左右子樹跟[l,r]有無交集,有交集才遞迴

if (l <= m) update(l, r, c, l, m, rt << 1);

if (r > m) update(l, r, c, m + 1, r, rt << 1 | 1);

pushup(rt);//更新本節點資訊

}//區間查詢

//1.下推標記的函式

void pushdown(int rt, int ln, int rn)

}//2.區間查詢函式

int query(int l, int r, int l, int r, int rt)

int m = (l + r) >> 1;

pushdown(rt, m - l + 1, r - m);

//累計答案

int ans = 0;

if (l <= m) ans += query(l, r, l, m, rt << 1);

if (r > m) ans += query(l, r, m + 1, r, rt << 1 | 1);

return ans;

}

線段樹模板(模板)

參考部落格 持續更新。外鏈轉存失敗,源站可能有防盜煉機制,建議將儲存下來直接上傳 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...