線段樹 gmoj 5361 捕老鼠

2021-10-10 03:57:55 字數 1437 閱讀 5553

有n

nn段可覆蓋區間[a[

i].l

,a[i

].r]

[a[i].l,a[i].r]

[a[i].

l,a[

i].r

]問最少需要多少段這樣的區間將[1,

n]

[1,n]

[1,n

]覆蓋完。 設f[i

]f[i]

f[i]

表示[ 1,

i]

[1,i]

[1,i

]中的最少覆蓋區間數

對於每根線段f[r

]=mi

n(f[

i])+

1a[i

].l−

1≤

i

i].r

f[r]=min(f[i])+1 \\ \small a[i].l-1\leq if[

r]=m

in(f

[i])

+1a[

i].l

−1≤i

i].r

可以用線段樹來處理單點修改,區間查詢。

#include

#include

#include

#include

#define ll long long

#define rep(i,x,y) for(ll i=x;i<=y;i++)

#define fre(x) freopen(#x".in","r",stdin),freopen(#x".out","w",stdout)

using

namespace std;

const ll n=

3e6+

10;

ll n,m,mod,a[n]

;struct node1t[n]

;struct node2

ll query

(ll p,ll l,ll r,ll ll,ll rr)

void

change

(ll p,ll l,ll r,ll ll,ll rr,ll k)

}tree;

ll read()

while

(isdigit

(c)) p=

(p<<3)

+(p<<1)

+c-48

,c=getchar()

;return p*f;

}int

main()

ll r=

min(n+

1,n+

1+a[n+1]

);printf

("%lld"

,tree.

query(1

,1,n*2

,r,r));

return0;

}

線段樹 02 構建線段樹

public inte ce merger 不能再縮小的基本問題是 對treeindex指向的節點的情況進行討論 public class segmenttree 在treeindex的位置建立表示區間 l.r 的線段樹 private void buildsegmenttree int treei...

線段樹 01 線段樹基礎

物理上 public class segmenttree public int getsize public e get int index 返回完全二叉樹的陣列表示中,乙個索引所表示的元素的左孩子節點的索引 private int leftchild int index 返回完全二叉樹的陣列表示中...

線段樹和zkw線段樹

好啦,我們就開始說說線段樹吧 線段樹是個支援區間操作和查詢的東東,平時的話還是蠻實用的 下面以最基本的區間加以及查詢區間和為例 線段樹顧名思義就是棵樹嘛,葉子節點是每個基本點,它們所對應的父親就是它們的和,具體如下圖 但是對於這樣的線段樹來說,操作所需的時間是遠達不到我們的要求的 會被t 因為我們會...