2015 浙江省赛 Team Formation (思维题)

来源:互联网 发布:网络墨迹是什么意思 编辑:程序博客网 时间:2024/05/17 07:09


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{AB}).

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


#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;typedef long long ll;const int N = 100000 + 100;int dp[N][33],a[N],b[N];int main(){int k,t,i,j,n,m;cin>>t;while(t--) {m=0;memset(dp,0,sizeof(dp));cin>>n;for(i=1;i<=n;i++) cin>>a[i];sort(a+1,a+1+n);for(i=1;i<=n;i++) {int temp=a[i];k=0;while(temp) {dp[i][++k]=temp%2;temp/=2;}b[i]=k;m=max(m,k);}for(i=1;i<=n;i++) {for(j=1;j<=m;j++)dp[i][j]+=dp[i-1][j];}ll ans=0;for(i=1;i<=n;i++) {ans+=n-i-(dp[n][b[i]]-dp[i][b[i]]);}cout<<ans<<endl;}return 0;}



0 0
原创粉丝点击