码迷,mamicode.com
首页 > 其他好文 > 详细

CF D. Ehab and the Expected XOR Problem 贪心+位运算

时间:2019-10-09 15:50:40      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:using   pre   pen   printf   scanf   memset   pac   def   expec   

code: 

#include <bits/stdc++.h>          
#define N 1000000    
#define setIO(s) freopen(s".in","r",stdin) 
using namespace std; 
int vis[N],b[N];           
void solve() 
{
    int n,m,i,j,cur=1,cnt=0;   
    memset(vis,0,sizeof(vis));   
    scanf("%d%d",&n,&m);   
    vis[m]=1;                  
    for(i=1;i<=(1<<n);++i) 
    {      
        while(vis[cur]) ++cur;        
        if((cur^b[cnt-1]) >= (1<<n)) break;                                                   
        b[++cnt]=cur;          
        vis[cur^m]=1;     
        ++cur;                                            
    }
    printf("%d\n",cnt);     
    for(i=0;i<cnt;++i) printf("%d ",b[i]^b[i+1]);          
}
int main() 
{  
    int i,j,T; 
    // setIO("input");         
    solve();       
    return 0; 
}

  

CF D. Ehab and the Expected XOR Problem 贪心+位运算

标签:using   pre   pen   printf   scanf   memset   pac   def   expec   

原文地址:https://www.cnblogs.com/guangheli/p/11641816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!