本文主要是介绍【51nod】2653 区间xor,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
区间xor
Link
解题思路
code
#include<iostream>
#include<cstdio>
using namespace std;int a,b;int f(int x)
{if(x%4==1) return 0;if(x%4==3) return 1;return f(x-1)^x;
}int main()
{cin>>a>>b;printf("%d\n",f(b)^f(a-1));
}
这篇关于【51nod】2653 区间xor的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!