论线段树=八股文

线段树格式

struct sgt{
	node t[N*4];
	int tag[N*4];
	void push_up(int p){
	
	}
	
	void push_down(int p){
		
	}
	void build(int p,int l,int r){
		
	}
	void update(int p,int begin,int end,int l,int r){
		
	}
	int query(int p,int begin,int end,int l,int r){
		
	}
}t;

五大函数:建树、更新、查询、以下推上、以上传下。

写出这五大函数,一道线段树的题目就写完了。

如洛谷[TJOI2009] 开关 - 洛谷

考虑子状态的转移,推导出父节点状态即可。

AC 代码

#include<bits/stdc++.h>
using namespace std;
const int N = 1000000+10;
struct node{
	int n,t;
};
struct sgt{
	node t[N*4];
	int tag[N*4];
	void push_up(int p){
		t[p].n = t[p*2+1].n+t[p*2].n;
		t[p].t = t[p*2+1].t+t[p*2].t;
	}
	void swaper(int p){
		swap(t[p].n,t[p].t);
	}
	void push_down(int p){
		if(tag[p]){
			swaper(p*2);
			swaper(p*2+1);
			tag[p] = 0;
			tag[p*2]++;
			tag[p*2]%=2;
			tag[p*2+1]++;
			tag[p*2+1]%=2;
		}
	}
	void build(int p,int l,int r){
		if(l == r){
			t[p].n = 1;
			return ;
		}
		int mid = (l+r)/2;
		build(p*2,l,mid);
		build(p*2+1,mid+1,r);
		push_up(p);
	}
	void update(int p,int begin,int end,int l,int r){
		push_down(p);
		if(l == begin&&r == end){
			swap(t[p].n,t[p].t);
			tag[p]++;
			tag[p]%=2;
			return;
		}
		int mid = (begin+end)/2;
		if(r <= mid){
			update(p*2,begin,mid,l,r);
		}
		else if(l > mid){
			update(p*2+1,mid+1,end,l,r);
		}
		else{
			update(p*2,begin,mid,l,mid);
			update(p*2+1,mid+1,end,mid+1,r);
		}
		push_up(p);
		//cout<<p<<" "<<begin<<" "<<end<<" "<<l<<" "<<r<<" "<<t[p].t<<endl;
	}
	int query(int p,int begin,int end,int l,int r){
		push_down(p);
		if(l == begin&& r==end){
			return t[p].t;
		}
		int mid = (begin+end)/2;
		if(r <= mid){
			return query(p*2,begin,mid,l,r);
		}
		else if(l > mid){
			return query(p*2+1,mid+1,end,l,r);
		}
		else{
			return query(p*2,begin,mid,l,mid)+query(p*2+1,mid+1,end,mid+1,r);
		}
	}
}t;
int main(){
	int n,m;
	cin>>n>>m;
	t.build(1,1,n);
	for(int i = 1;i <= m;i++){
		int c,a,b;
		cin>>c>>a>>b;
		if(c==0){
			t.update(1,1,n,a,b);
		}
		else{
			cout<<t.query(1,1,n,a,b)<<endl;
		}
	}
    return 0;
} 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值