记录编号 460698 评测结果 AAAAAAAAAA
题目名称 数组异或 最终得分 100
用户昵称 GravatarAnonymity 是否通过 通过
代码语言 C++ 运行时间 0.644 s
提交时间 2017-10-18 06:05:42 内存使用 1.65 MiB
显示代码纯文本
  1. #include <cstdio>
  2. #include <iostream>
  3. using namespace std;
  4. #define maxn 100005
  5. inline void read(int& x)
  6. { char c=getchar();x=0;int y=1;
  7. while(c<'0'||c>'9'){if(c=='-') y=-1;c=getchar();}
  8. while(c>='0'&&c<='9') x=x*10+c-'0',c=getchar();
  9. x*=y;
  10. }
  11. typedef long long ll;
  12. const ll mod=1e9+7;
  13. int n,A[maxn],B[maxn];
  14. ll suma[maxn][2],sumb[maxn][2];
  15. int solve()
  16. { freopen("xorarray.in","r",stdin);
  17. freopen("xorarray.out","w",stdout);
  18. read(n);register int i,j;
  19. for(i=1;i<=n;++i) read(A[i]);
  20. for(i=1;i<=n;++i) read(B[i]);
  21. for(i=1;i<=n;++i)
  22. { ll x=0;
  23. for(j=0;j<=30;++j)
  24. { ++suma[j][(A[i]>>j)&1];++sumb[j][(B[i]>>j)&1];
  25. ll tmp=((ll)suma[j][0]*sumb[j][1]+(ll)suma[j][1]*sumb[j][0])%mod;
  26. x=(x+tmp*(1<<j)%mod)%mod;
  27. }
  28. printf("%lld ",x);
  29. }
  30. }
  31. int Anonymity=solve();
  32. int main(){;}