bzoj1012[最大数]

http://www.lydsy.com/JudgeOnline/problem.php?id=1012

我是蒟蒻!~~~~~~~~~~~~~~~~~~


不知道什么为毛可以搞成单调栈- - -


蒟蒻的我直接写了线段树,维护一个当前序列长度cnt,然后每次查询(cnt-n+1,cnt)的最大值

加入一个cnt++


#include<cstdio>
#include<iostream>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#include<queue>
#include<cmath>
#define LL long long
using namespace std;
const LL maxn=200000+20;
struct node
{
	LL l,r,mm;
}T[maxn<<2];
LL m,M;
void pushup(LL i)
{
	T[i].mm=max(T[i<<1].mm,T[i<<1|1].mm);
}
void build(LL i,LL l,LL r)
{
	T[i].l=l;
	T[i].r=r;
	if(l==r)
	{
		T[i].mm=0;
		return ;
	}
	LL mid=(l+r)>>1;
	build(i<<1,l,mid);
	build(i<<1|1,mid+1,r);
	pushup(i);
}
void updata(LL i,LL x,LL v)
{
	LL l=T[i].l;
	LL r=T[i].r;
	if(l==r)
	{
		T[i].mm=v;
		return ;
	}
	LL mid=(l+r)>>1;
	if(x<=mid)updata(i<<1,x,v);
	else updata(i<<1|1,x,v);
	pushup(i);
}
LL query(LL i,LL L,LL R)
{
	LL l=T[i].l;
	LL r=T[i].r;
	if(l>=L&&r<=R)return T[i].mm;
	LL mid=(l+r)>>1;
	LL ans=0;
	if(L<=mid)ans=max(ans,query(i<<1,L,R));
	if(R>mid)ans=max(ans,query(i<<1|1,L,R));
	return ans;
}
LL cnt;
char ss[5];
LL n;
LL t;

int main()
{
	scanf("%lld%lld",&m,&M);
	cnt=0;
	t=0;
	build(1,1,m);
	for(LL i=1;i<=m;i++)
	{
		scanf("%s%lld",ss,&n);
		if(ss[0]=='A')
		{
			cnt++;
			updata(1,cnt,(n+t)%M);
		}
		else if(ss[0]=='Q')
		{
			t=query(1,cnt-n+1,cnt);
			printf("%lld\n",t);
		}
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值