hihocoder 1866 XOR

Posted jyyhh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hihocoder 1866 XOR相关的知识,希望对你有一定的参考价值。

题面在这里

 

   拆位分析一下就OK啦

 

/*
    y + (y xor x)
*/
#include<bits/stdc++.h>
#define ll long long
using namespace std;

int n,k,ans=1;

int main(){
	scanf("%d%d",&n,&k);
	for(int i=0;i<=30;i++) if((1<<i)&n) ans<<=1;
	for(int i=29;i>=0;i--) if(!((1<<i)&n)&&(1<<(i+1))<=k) k-=1<<(i+1);
	printf("%d
",k==0?ans:0);
	return 0;
}

  

以上是关于hihocoder 1866 XOR的主要内容,如果未能解决你的问题,请参考以下文章

p1866

hihocoder #1467 : 2-SAT·hihoCoder音乐节 2-SAT

hihocoder #1468 : 2-SAT·hihoCoder新春晚会 2-SAT

HihoCoder #1467 : 2-SAT·hihoCoder音乐节

Hihocoder 2月29日

hihoCoder 1039 : 字符消除