ZOJ 3870 Team Formation (二进制)

网友投稿 1032 2022-10-03

ZOJ 3870 Team Formation (二进制)

ZOJ 3870 Team Formation (二进制)

Description

For an upcoming programming contest, Edward, the headmaster of Marjar University, is forming a two-man team from N students of his university.Edward knows the skill level of each student. He has found that if two students with skill level A and B form a team, the skill level of the team will be A ⊕ B, where ⊕ means bitwise exclusive or. A team will play well if and only if the skill level of the team is greater than the skill level of each team member (i.e. A ⊕ B > max{A, B}).Edward wants to form a team that will play well in the contest. Please tell him the possible number of such teams. Two teams are considered different if there is at least one different team member.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:The first line contains an integer N (2 <= N <= 100000), which indicates the number of student. The next line contains N positive integers separated by spaces. The ith integer denotes the skill level of ith student. Every integer will not exceed 109.

Output

For each case, print the answer in one line.

Sample Input

231 2 351 2 3 4 5

Sample Output

16

题意

找出一些数中可以找多少组两个数,满足这两个数异或的结果大于其中任意一个数。

思路

一个数A,想要异或之后比原数大,我们可以找一个比它小的数B,并且B的二进制最高位所对应A的相应位为0。

对于输入的所有数,我们可以统计其二进制最高位在第k位的出现次数。

然后枚举所有的数字,对每一个数字二进制中有效的零,看是否有统计中存在最高位为当前位的数,若有, ​​sum+=b[t]​​

AC 代码

#include #include #include#include #includeusing namespace std;int a[100100],b[40];int maxbit(int n){ int t = 0; while(n) { t++; n>>=1; } return t;}int main(){ int T; scanf("%d",&T); while(T--) { int sum = 0,n; scanf("%d",&n); memset(b,0,sizeof(b)); for(int i=0; i>= 1; t++; } } printf("%d\n",sum); } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:CCCC L3-013. 非常弹的球 (高中物理)
下一篇:微信视频号怎么入驻(微信视频号怎么入驻选品中心)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~