ZOJ 3299 线段树

//题意:有n排板砖,m个木板,边界的l和r的n列板砖从天上掉下来,然后有m个边界的a,b的高度为h的木板去接那些板砖,一排板砖中的部分板砖如果掉到木板上就停止下落,
//剩下的继续下落,问最后每块木板上有多少块板砖。
//
//开结构体去存储线段树中节点的信息MLE了。。
//
//按木板的高度,从低到高,去更新线段树节点对应的木板的编号。
//
//板砖落下时,将对应区间的覆盖次数加一。
//
//最后查询的时候,如果已经是叶子结点,或者这个区间的对应的木板的编号是确定的,那么就要在对应的木板编号上加上,覆盖次数乘以区间长度的值。
//
all is for 普吉岛*******************************************************************************************
//
//就是我要好好的敲一下离散化
//
//先是更新一遍,高的模板覆盖低的模板,这样的话就变成一条木板了;
//然后再用木块覆盖上去,更新每一段的覆盖次数;
//最后查询每一块的覆盖次数*区间长度。。
//首先离散化。。
//
//想到最好要养成代码写完就能一遍过的情况,不要每次都在那里等调试。
//还有一个很重要的问题,做题的速度问题!!!
//一开始为什么会mle?过了
//传参?map?vector?re?

#include
#include
#include
#include
#include
#include
#define maxn 100010
#include
#include
#define ll long long
using namespace std;
#define maxm 1600100
#define rep(i,n) for(int i=0;iH;
vector Y;


//where is the problem
struct node{
int sum,l,r,col;
}tree[maxm];
long long ans[maxn];
int LL[401000];
void build(int root ,int left,int right)
{
//    cout<>1;
    build(root<<1,left,mid);
    build(root<<1|1,mid,right);}
}


void updatec(int root,int s,int t,int cl)
{
//    cout<=s&& LL[right]<=t) {tree[root].col=cl;return;}
//    cout<>1;
    if(s<=LL[mid]) updatec(root<<1,s,t,cl);
    if(t>=LL[mid]) updatec(root<<1|1,s,t,cl);
}


void updateS(int root,int s,int t)
{
//    cout<=s &&LL[right]<=t)
    {
        tree[root].sum++;
        return;
    }
    if(left+1==right) return;

    if(tree[root].sum>0)
    {
       tree[root<<1].sum+=tree[root].sum;
        tree[root<<1|1].sum+=tree[root].sum;
        tree[root].sum=0;
    }
    int mid=(left+right)>>1;
    if(s<=LL[mid]) updateS(root<<1,s,t);
    if(t>=LL[mid]) updateS(root<<1|1,s,t);

}

void query(int root)
{
//    cout< 0){
		tree[root<<1].sum += tree[root].sum;
		tree[root<<1|1].sum += tree[root].sum;
		tree[root].sum = 0;
	}
	if(tree[root].col != -1){
		tree[root<<1].col= tree[root<<1|1].col = tree[root].col;
	}
	int mid = (left + right) >> 1;
	query(root<<1);
	query(root<<1|1);
}

void print(int root)
{
//    cout<

你可能感兴趣的:(数据结构)