牛客 买礼物(链表 线段树)

在这里插入图片描述

在这里插入图片描述

// Problem: 买礼物
// Contest: NowCoder
// URL: https://ac.nowcoder.com/acm/contest/9983/E
// Memory Limit: 524288 MB
// Time Limit: 4000 ms
// 
// Powered by CP Editor (https://cpeditor.org)

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll>PLL;
typedef pair<int, int>PII;
typedef pair<double, double>PDD;
#define I_int ll
inline ll read()
{
    ll x = 0, f = 1;
    char ch = getchar();
    while(ch < '0' || ch > '9')
    {
        if(ch == '-')f = -1;
        ch = getchar();
    }
    while(ch >= '0' && ch <= '9')
    {
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}

inline void out(ll x){
	if (x < 0) x = ~x + 1, putchar('-');
	if (x > 9) out(x / 10);
	putchar(x % 10 + '0');
}

inline void write(ll x){
	if (x < 0) x = ~x + 1, putchar('-');
	if (x > 9) write(x / 10);
	putchar(x % 10 + '0');
	puts("");
}

#define read read()
#define closeSync ios::sync_with_stdio(0);cin.tie(0);cout.tie(0)
#define multiCase int T;cin>>T;for(int t=1;t<=T;t++)
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i<(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
#define perr(i,a,b) for(int i=(a);i>(b);i--)
ll ksm(ll a, ll b, ll p)
{
    ll res = 1;
    while(b)
    {
        if(b & 1)res = res * a % p;
        a = a * a % p;
        b >>= 1;
    }
    return res;
}
const int inf = 0x3f3f3f3f;
#define PI acos(-1)
const int maxn=5e5+100;

vector<int>v[maxn*2];
int n,q,a[maxn];
int las[maxn],nex[maxn];

struct node{
	int l,r,val;
}tr[maxn*4];

void pushup(int u){
	tr[u].val=min(tr[u<<1].val,tr[u<<1|1].val);
}

void build(int u,int l,int r){
	tr[u].l=l,tr[u].r=r;
	if(l==r) {
		tr[u].val=nex[l];
		return ;
	}
	int mid=(l+r)/2;
	build(u<<1,l,mid);build(u<<1|1,mid+1,r);
	pushup(u);
}

void update(int u,int pos,int val){
	if(tr[u].l==tr[u].r){
		tr[u].val=val;
		return ;
	}
	int mid=(tr[u].l+tr[u].r)/2;
	if(pos<=mid) update(u<<1,pos,val);
	else update(u<<1|1,pos,val);
	pushup(u);
}

int query(int u,int l,int r){
	if(l==tr[u].l&&r==tr[u].r) return tr[u].val;
	int mid=(tr[u].l+tr[u].r)/2;
	int res=inf;
	if(r<=mid) return query(u<<1,l,r);
	else if(l>mid) return query(u<<1|1,l,r);
	return min(query(u<<1,l,mid),query(u<<1|1,mid+1,r));
}

int main(){
	n=read,q=read;
	rep(i,1,n) a[i]=read;
	rep(i,1,1e6) v[i].push_back(0);
	rep(i,1,n) v[a[i]].push_back(i);
	rep(i,1,1e6) v[i].push_back(inf);
	rep(i,1,1e6){
		for(int j=1;j<v[i].size()-1;j++){
			int t=v[i][j];
			las[t]=v[i][j-1];
			nex[t]=v[i][j+1];
		}
	}
	build(1,1,n);
	while(q--){
		int op=read;
		if(op==1){
			int x=read;
			update(1,x,inf);
			update(1,las[x],nex[x]);
			nex[las[x]]=nex[x];
			if(nex[x]<inf) las[nex[x]]=las[x];
		}
		else{
			int l=read,r=read;
			if(query(1,l,r)<=r) puts("1");
			else puts("0");
		}
	}
	return 0;
} 







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

豆沙睡不醒

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值