Blue Mary开公司 HYSBZ - 1568

https://www.lydsy.com/JudgeOnline/problem.php?id=1568

李超线段树模板

博客https://blog.csdn.net/flere825/article/details/76283734

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
#define N 500010 

double a[1000010],b[1000010];
int tr[2000010];
int n,m;

double gety(int k,int x)
{
    return a[k]+(x-1)*b[k];
}

int judge(int x,int y,int pos)
{
    return gety(x,pos)>gety(y,pos);
}

void update(int now,int l,int r,int x)
{
	int m;
    if(l==r)
    {
        if(judge(x,tr[now],l)) tr[now]=x;
        return;
    }
    m=(l+r)/2;
    if(b[x]>b[tr[now]])
    {
    	if(judge(x,tr[now],m))
        {
			update(now<<1,l,m,tr[now]);
			tr[now]=x;
		}
        else update(now<<1|1,m+1,r,x);
    }
    if(b[x]<b[tr[now]])
    {
    	if(judge(x,tr[now],m))
        {
			update(now<<1|1,m+1,r,tr[now]);
			tr[now]=x;
		}
        else update(now<<1,l,m,x);
    }
}

double query(int now,int l,int r,int x)
{
	double res;
	int m;
    if(l==r) return gety(tr[now],x);
    m=(l+r)/2;
	res=gety(tr[now],x);
    if(x<=m) res=max(res,query(now<<1,l,m,x));
    else res=max(res,query(now<<1|1,m+1,r,x));
    return res;
}

int main()
{
	double t;
	int q,k,x;
	char op[10];
    scanf("%d",&q);
    while(q--)
    {
        scanf("%s",op);
        if(op[0]=='P')
        {
            m++;
            scanf("%lf%lf",&a[m],&b[m]);
            update(1,1,N,m);
        }
        else
        {
            scanf("%d",&x);
            t=query(1,1,N,x);
            k=t;
            printf("%d\n",k/100);
        }
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值