Multiset CodeForces - 1354D(权值线段树)

Note that the memory limit is unusual.

You are given a multiset consisting of n integers. You have to process queries of two types:

add integer k into the multiset;
find the k-th order statistics in the multiset and remove it.
k-th order statistics in the multiset is the k-th element in the sorted list of all elements of the multiset. For example, if the multiset contains elements 1, 4, 2, 1, 4, 5, 7, and k=3, then you have to find the 3-rd element in [1,1,2,4,4,5,7], which is 2. If you try to delete an element which occurs multiple times in the multiset, only one occurence is removed.

After processing all queries, print any number belonging to the multiset, or say that it is empty.

Input
The first line contains two integers n and q (1≤n,q≤106) — the number of elements in the initial multiset and the number of queries, respectively.

The second line contains n integers a1, a2, …, an (1≤a1≤a2≤⋯≤an≤n) — the elements of the multiset.

The third line contains q integers k1, k2, …, kq, each representing a query:

if 1≤ki≤n, then the i-th query is “insert ki into the multiset”;
if ki<0, then the i-th query is “remove the |ki|-th order statistics from the multiset”. For this query, it is guaranteed that |ki| is not greater than the size of the multiset.
Output
If the multiset is empty after all queries, print 0.

Otherwise, print any integer that belongs to the resulting multiset.

Examples
Input
5 5
1 2 3 4 5
-1 -1 -1 -1 -1
Output
0
Input
5 4
1 2 3 4 5
-5 -1 -3 -1
Output
3
Input
6 2
1 1 1 2 3 4
5 6
Output
6
Note
In the first example, all elements of the multiset are deleted.

In the second example, the elements 5, 1, 4, 2 are deleted (they are listed in chronological order of their removal).

In the third example, 6 is not the only answer.
思路:看到标题吓得我赶紧去看了看multiset的用法,果然,没什么卵用。
数字的范围是[1,n]的,我们可以采用权值线段树,出现一个x,就在线段树的那个位置+1,线段树记录的是这个数出现的次数。
对于k>0来说,和上面的操作一样。
对于k<0来说,我们需要找到排在第(-k)个位置的数字是什么,线段树也可以解决。找到这个数字之后,重复上面的过程,只不过是将那个位置-1而已。
ps:空间卡的特别严格,不要开额外的空间。
代码如下:

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxx=1e6+100;
struct node{
	int sum;
}p[maxx<<2];
int a[maxx];
int n,q;

inline void pushup(int cur)
{
	p[cur].sum=p[cur<<1].sum+p[cur<<1|1].sum;
}
inline void build(int l,int r,int cur)
{
	p[cur].sum=0;
	if(l==r) return ;
	int mid=l+r>>1;
	build(l,mid,cur<<1);
	build(mid+1,r,cur<<1|1);
}
inline void update(int l,int r,int cur,int pos,int val)
{
	if(l==r)
	{
		p[cur].sum+=val;
		return ;
	}
	int mid=l+r>>1;
	if(pos<=mid) update(l,mid,cur<<1,pos,val);
	else update(mid+1,r,cur<<1|1,pos,val);
	pushup(cur);
}
inline int query(int l,int r,int cur,int num)
{
	if(l==r) return l;
	int mid=l+r>>1;
	if(p[cur<<1].sum>=num) return query(l,mid,cur<<1,num);
	else return query(mid+1,r,cur<<1|1,num-p[cur<<1].sum);
}
inline int Query(int l,int r,int cur)
{
	if(p[cur].sum==0) return 0;
	if(l==r) return l;
	int mid=l+r>>1;
	if(p[cur<<1].sum) return Query(l,mid,cur<<1);
	else return Query(mid+1,r,cur<<1|1);
}
int main()
{
	scanf("%d%d",&n,&q);
	build(1,n,1);
	int x,pos;
	for(int i=1;i<=n;i++)
	{
		scanf("%d",&x);
		update(1,n,1,x,1);
	}
	while(q--)
	{
		scanf("%d",&x);
		if(x>0) update(1,n,1,x,1);
		else
		{
			pos=query(1,n,1,-x);
			update(1,n,1,pos,-1);
		}
	}
	printf("%d\n",Query(1,n,1));
	return 0;
}

努力加油a啊,(o)/~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

starlet_kiss

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

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

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

打赏作者

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

抵扣说明:

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

余额充值