码迷,mamicode.com
首页 > 其他好文 > 详细

[bzoj4636]蒟蒻的数列_线段树

时间:2018-08-29 22:50:18      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:char   efi   ret   include   节点   lld   using   +=   query   

蒟蒻的数列 bzoj-4636

题目大意:给定一个序列,初始均为0。n次操作:每次讲一段区间中小于k的数都变成k。操作的最后询问全局和。

注释:$1\le n\le 4\cdot 10^4$。


想法:那个操作就是一个不好好说话的操作,说白了就是对区间的每一个数取max

然后我们对于那个序列建立分治线段树。每个操作我都把它挂在对应的log的点上。

n个操作都执行完了之后我们从1号节点深搜,更新答案即可。

最后,附上丑陋的代码... ...

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define inf 1e9 
#define N 40010 
using namespace std;
typedef long long ll;
ll maxn[N*40],ans=0;
int ls[N*40],rs[N*40],cnt;
int root;
inline char nc()
{
	static char *p1,*p2,buf[100000];
	return (p1==p2)&&(p2=(p1=buf)+fread(buf,1,100000,stdin),p1==p2)?EOF:*p1++;
}
ll read()
{
	ll x=0; char c=nc();
	while(!isdigit(c)) c=nc();
	while(isdigit(c)) x=(x<<3)+(x<<1)+c-‘0‘,c=nc();
	return x;
}
void update(int x,int y,ll val,int l,int r,int &pos)
{
	if(!pos) pos=++cnt;
	if(x==l&&r==y)
	{
		maxn[pos]=max(maxn[pos],val);
		return;
	}
	int mid=(l+r)>>1;
	if(y<=mid) update(x,y,val,l,mid,ls[pos]);
	else if(mid<x) update(x,y,val,mid+1,r,rs[pos]);
	else
	{
		update(x,mid,val,l,mid,ls[pos]);
		update(mid+1,y,val,mid+1,r,rs[pos]);
	}
	// if(x<=mid) update(x,y,val,l,mid,ls[pos]);
	// if(mid<y) update(x,y,val,mid+1,r,rs[pos]);
}
void query(ll val,int l,int r,int pos)
{
	if(!pos) return;
	maxn[pos]=max(maxn[pos],val);
	if(!ls[pos]&&!rs[pos])
	{
		ans+=maxn[pos]*(r-l+1);
		return;
	}
	int mid=(l+r)>>1;
	query(maxn[pos],l,mid,ls[pos]);
	query(maxn[pos],mid+1,r,rs[pos]);
	if(!ls[pos]) ans+=maxn[pos]*(mid-l+1);
	if(!rs[pos]) ans+=maxn[pos]*(r-mid);
}
int main()
{
	int n=read();
	int x,y; ll val;
	for(int i=1;i<=n;++i)
	{
		x=read(),y=read(),val=read();
		if(x==y) continue;
		update(x,y-1,val,1,inf,root);
	}
	query(0,1,inf,root);
	printf("%lld\n",ans);
	return 0;
}

小结:get新技能:分治线段树。

[bzoj4636]蒟蒻的数列_线段树

标签:char   efi   ret   include   节点   lld   using   +=   query   

原文地址:https://www.cnblogs.com/ShuraK/p/9557360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!