当前位置:   article > 正文

2526 最大异或和(思维题,“异或和最大”)_51nod2526最大异或和给定

51nod2526最大异或和给定

题目描述:

2526 最大异或和

给定nn个数x1…xnx1…xn,请你选择n个数p1…pnp1…pn,

使得p1<=x1,p2<=x2......p1<=x1,p2<=x2......,并且p1xorp2…pnp1xorp2…pn的

值尽量大。问这个最大的异或和是多少。

n≤100,0≤xi≤109n≤100,0≤xi≤109

 收起

输入

第一行一个正整数 n 。
第二行 n 个非负整数表示 x[1...n] 。

输出

一行一个数表示答案。

输入样例

3
2 2 2

输出样例

3

思路:

          从每个数的高位开始考虑,如果为1,且答案ans当前该位置为0,

则一定可以得到一个答案等于ans|该位置,若ans该位置已经为1,那么

ans后面的位置可以被全部置为1,继续考虑下一个数。详情见代码。

代码实现:

  1. #include<iostream>
  2. #include<string.h>
  3. #include<stdio.h>
  4. #include<math.h>
  5. #include<set>
  6. #include<algorithm>
  7. #define LL long long
  8. #define INF 0x3f3f3f3f
  9. using namespace std;
  10. const int N=2e5+100;
  11. const int M=4e5+100;
  12. int arr[N];
  13. int main(){
  14. int n;
  15. int ans=0;
  16. while(cin>>n){
  17. for(int i=1;i<=n;i++){
  18. cin>>arr[i];
  19. }
  20. for(int i=1;i<=n;i++){
  21. for(int j=31;j>=0;j--){
  22. if(arr[i]>>j&1){
  23. if(ans>>j&1){
  24. ans|=1<<j-1;
  25. break;
  26. }else{
  27. ans|=1<<j;
  28. }
  29. }
  30. }
  31. }
  32. cout<<ans<<endl;
  33. }
  34. return 0;
  35. }

THE END;

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/560739
推荐阅读
相关标签
  

闽ICP备14008679号