hdu 4107 Gangster

结点存当前区间伤害最小值,最大值,以及要加的伤害值。

更新到如果最小值大于等于P,或者最大值小于P为止。

时间卡很紧,一些不太注意的细节就会卡死 = =。。

#include <set>
#include <map>
#include <queue>
#include <stack>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <limits.h>
#include <string.h>
#include <string>
#include <algorithm>
#define MID(x,y) ( ( x + y ) >> 1 )
#define L(x) ( x << 1 )
#define R(x) ( x << 1 | 1 )
#define FOR(i,s,t) for(int i=(s); i<(t); i++)
#define BUG puts("here!!!")
#define STOP system("pause")
#define file_r(x) freopen(x, "r", stdin)
#define file_w(x) freopen(x, "w", stdout)

using namespace std;

const int MAX = 200005;
struct Tnode{				// 一维线段树 
    int l, r, min, max, add;
    int len() { return r - l;}
    int mid() { return MID(l,r);}
    bool in(int ll,int rr) { return l >= ll && r <= rr; }
    void lr(int ll,int rr){ l = ll; r = rr;}
};
Tnode node[MAX<<2];
int P, n;
void Build(int t,int l,int r)
{
	node[t].lr(l,r);
	node[t].min = node[t].max = node[t].add = 0;
	if( node[t].len() == 1 )
		return ;
	int mid = MID(l,r);
	Build(L(t),l,mid);
	Build(R(t),mid,r);
}

void Updata_val(int t, int add)
{
	node[t].min += add;
	node[t].max += add;
}

void Updata_add(int t)
{
	if( node[t].add )
	{
		node[L(t)].add += node[t].add;
		Updata_val(L(t), node[t].add);
		node[R(t)].add += node[t].add;
		Updata_val(R(t), node[t].add);
		
		node[t].add = 0;
	}
}

void Updata(int t,int l,int r,int add)
{
	if( node[t].in(l,r) )
	{
		if( node[t].max < P )
		{
			node[t].add += add;
			Updata_val(t, add);
			return ;
		}
		else		
			if( node[t].min >= P )
			{
				node[t].add += add * 2;
				Updata_val(t, add * 2);
				return ;
			}
	}
	Updata_add(t);
	if( node[t].len() == 1 ) return ;
	int mid = node[t].mid();
	if( l < mid ) Updata(L(t),l,r,add);
	if( r > mid ) Updata(R(t),l,r,add);
	
	node[t].min = min(node[L(t)].min, node[R(t)].min);
	node[t].max = max(node[L(t)].max, node[R(t)].max);
}

void Query(int t)
{
	if( node[t].min == node[t].max )
	{
		FOR(i, node[t].l, node[t].r)
			printf(i == n-1 ? "%d\n" : "%d ", node[t].min);
		return ;
	}
	Updata_add(t);
	if( node[t].len() == 1 ) return ;
	int mid = node[t].mid();
	Query(L(t));
	Query(R(t));
}

int main()
{
	int m, x, y, val;
	
	while( ~scanf("%d%d%d", &n, &m, &P) )
	{
		Build(1, 0, n);
		while( m-- )
		{
			scanf("%d%d%d", &x, &y, &val);
			Updata(1, x-1, y, val);
		}
		Query(1);
	}

return 0;
}


评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值