XDOJ1045火车预订请求系统

题目

线段树区间加 线段树区间找最大值

#include
#include
#include
using namespace std;
const int maxn = 1e6+10;
int tree[maxn],lazy[maxn],ok[maxn],lar[maxn];
int c,s,r;

void paint(int pos,int x)
{
	tree[pos]+=x;
	lazy[pos]+=x;
}

void pushdown(int pos,int l,int r)
{
    int m = l+r>>1;
   	paint(pos<<1,lazy[pos]);
   	paint(pos<<1|1,lazy[pos]);
    lazy[pos]=0;
}

void add(int l,int r,int L,int R,int x,int pos)
{
    if(L<=l&&r<=R){
        paint(pos,x);
        return;
    }
    int m=l+r>>1;
    if(L<=m)add(l,m,L,R,x,pos<<1);
    if(R>m)add(m+1,r,L,R,x,pos<<1|1);
    tree[pos]=max(tree[pos<<1],tree[pos<<1|1]);
}

int qry(int l,int r,int L,int R,int val,int pos)
{
	//cout<=L && r<=R)
    	return tree[pos];
    if(lazy[pos])
    	pushdown(pos,l,r);
    int m=l+r>>1;
    int flag=-1;
    if(m>=L)
        flag=max(qry(l,m,L,R,val,pos<<1),flag);
    if(m'9')ch=getchar();
    while(ch>='0'&&ch<='9'){
        x=(x<<3)+(x<<1)+ch-'0';
        ch=getchar();
    }
    return x;
}

int main()
{
	//freopen("date.in","r",stdin);
    c=read(),s=read(),r=read();
    for(int i=0;i

 

你可能感兴趣的:(d,a's',12,2)