Vitya and Strange Lesson (CodeForces-842D)(01字典树)

Today at the lesson Vitya learned a very interesting function — mex. Mex of a sequence of numbers is the minimum non-negative number that is not present in the sequence as element. For example, mex([4, 33, 0, 1, 1, 5]) = 2 and mex([1, 2, 3]) = 0.

Vitya quickly understood all tasks of the teacher, but can you do the same?

You are given an array consisting of n non-negative integers, and m queries. Each query is characterized by one number x and consists of the following consecutive steps:

  • Perform the bitwise addition operation modulo 2 (xor) of each array element with the number x.
  • Find mex of the resulting array.

Note that after each query the array changes.

Input

First line contains two integer numbers n and m (1 ≤ n, m ≤ 3·105) — number of elements in array and number of queries.

Next line contains n integer numbers ai (0 ≤ ai ≤ 3·105) — elements of then array.

Each of next m lines contains query — one integer number x (0 ≤ x ≤ 3·105).

Output

For each query print the answer on a separate line.

Examples

Input

2 2
1 3
1
3

Output

1
0

Input

4 3
0 1 5 6
1
2
4

Output

2
0
0

Input

5 4
0 1 5 6 7
1
1
4
5

Output

2
2
0
2

题意:给你一个序列,每次操作使得序列xor x  然后求出未出现的最小的自然数。

思路:这道题的话,因为有着异或的操作,所以我们用01字典树来做。这道题要我们求没出现的数中的最小值。我们建一个字典树,然后把0~600000的数存到字典树中,然后我们再查询每次要查询的值,最后得出结果。

AC代码:

#include<bits/stdc++.h>
typedef long long ll;
const int maxx=300010;
const int maxn=2;
using namespace std;
int Trie[31*maxx][maxn];
int color[31*maxx];
int vis[31*maxx];
int k;
int n,m,a,b,ans;
void init()
{
    memset(Trie,0,sizeof(Trie));
    memset(color,0,sizeof(color));
    k=0;
}
void insert(int w)
{
    int p=0;
    for(int i=31; i>=0; i--)
    {
        int c=(w>>i)&1;
        if(!Trie[p][c])
        {
            memset(Trie[k],0,sizeof(Trie[k]));
            Trie[p][c]=++k;
        }
        p=Trie[p][c];
    }
    color[p]=w;
}
int search(int w)
{
    int p=0;
    for(int i=31; i>=0; i--)
    {
        int c=(w>>i)&1;
        if(Trie[p][c])
            p=Trie[p][c];
        else
            p=Trie[p][1-c];
    }
    return color[p]^w;
}
int main()
{
    init();
    scanf("%d%d",&n,&m);
    for(int i=1; i<=n; i++)
    {
        scanf("%d",&a);
        vis[a]=1;
    }
    for(int i=0; i<=600000; i++)
    {
        if(!vis[i])
        {
            insert(i);
        }
    }
    for(int i=1; i<=m; i++)
    {
        scanf("%d",&b);
        ans^=b;
        printf("%d\n",search(ans));
    }
    return 0;
}

 

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值