D. Ehab and the Expected XOR Problem

output

standard output

Given two integers nn and xx, construct an array that satisfies the following conditions:

  • for any element aiai in the array, 1≤ai<2n1≤ai<2n;
  • there is no non-empty subsegment with bitwise XOR equal to 00 or xx,
  • its length ll should be maximized.

A sequence bb is a subsegment of a sequence aa if bb can be obtained from aa by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.

Input

The only line contains two integers nn and xx (1≤n≤181≤n≤18, 1≤x<2181≤x<218).

Output

The first line should contain the length of the array ll.

If ll is positive, the second line should contain ll space-separated integers a1a1, a2a2, ……, alal (1≤ai<2n1≤ai<2n) — the elements of the array aa.

If there are multiple solutions, print any of them.

Examples

input

Copy

3 5

output

Copy

3
6 1 3

input

Copy

2 4

output

Copy

3
1 3 1 

input

Copy

1 1

output

Copy

0

Note

In the first example, the bitwise XOR of the subsegments are {6,7,4,1,2,3}{6,7,4,1,2,3}.

题意:还是比较简单的,就是要你构造一组数列,所有子段和不为0或x,取值在2的次方内。

思路:利用好前缀异或和的性质即可。

代码:

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<vector>
#include<algorithm>
#define LL long long

using namespace std;
const int maxn=3e5+100;
int vis[maxn];

int main()
{
    int n,x;
    cin>>n>>x;
    vis[0]=1;
    vector<int>st;
    st.push_back(0);
    for(int i=1;i<(1<<n);i++)
    {
        if(vis[i^x])
        {
            continue;
        }
        vis[i]=1;
        st.push_back(i);
    }
    cout<<st.size()-1<<endl;
    for(int i=1;i<st.size();i++)
    {
        cout<<(st[i]^st[i-1])<<" ";
    }
    cout<<endl;
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值