标签:codeforces 构造
题目大意:给定一个区间
当
当
若
若
若
若
我们只需要判断能否在
不妨设这三个数从小到大分别为
首先最高位一定是这样:
然后我们讨论次高位,一共有三种情况:
容易证明,如果选择方案2或方案3存在一组合法的解,那么将每个数的次高位删除,用最高位代替次高位,一定也是一组合法的解
那么次高位一定是这样:
现在三个数的大小关系都确定了,我们应该让最小的数尽量大,最大的数尽量小,这样才能让这三个数尽量在
那么显然要这么搞:
然后就简单了,我们只需要找到第一个
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
long long l,r,k,ans=0x3f3f3f3f3f3f3f3fll;
int Count(int x)
{
int re=0;
for(;x;x-=x&-x)
++re;
return re;
}
int main()
{
long long i,j;
cin>>l>>r>>k;
if(r-l+1<=4)
{
int _ans;
for(i=1;i<1<<r-l+1;i++)
if(Count(i)<=k)
{
long long temp=0;
for(j=0;j<r-l+1;j++)
if( i&(1<<j) )
temp^=l+j;
if(temp<=ans)
ans=temp,_ans=i;
}
cout<<ans<<endl;
cout<<Count(_ans)<<endl;
for(j=0;j<r-l+1;j++)
if( _ans&(1<<j) )
cout<<l+j<<‘ ‘;
return 0;
}
if(k>=4)
{
if(l&1) ++l;
cout<<0<<endl;
cout<<4<<endl;
for(i=0;i<4;i++)
cout<<l+i<<‘ ‘;
return 0;
}
if(k>=3)
{
for(i=1;i<l;i=i<<1|1);
if( ( (i+1) | (i+1>>1) )<=r )
{
cout<<0<<endl;
cout<<3<<endl;
cout<<i<<‘ ‘<<( (i+1) | (i>>1) )<<‘ ‘<<( (i+1) | (i+1>>1) )<<‘ ‘;
return 0;
}
}
if(k>=2)
{
if(l&1) ++l;
cout<<1<<endl;
cout<<2<<endl;
cout<<l<<‘ ‘<<l+1<<‘ ‘;
return 0;
}
cout<<l<<endl;
cout<<1<<endl;
cout<<l<<‘ ‘;
return 0;
}
codeforces #460D Little Victor and Set 构造
标签:codeforces 构造
原文地址:http://blog.csdn.net/popoqqq/article/details/45690941