ZOJ 3870:Team Formation(位运算&思维)
发布日期:2022-04-01 13:25:17 浏览次数:30 分类:博客文章

本文共 2346 字,大约阅读时间需要 7 分钟。

Team Formation

Time Limit: 2 Seconds Memory Limit: 131072 KB

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

1
0
9
10^9
.

Output

For each case, print the answer in one line.

Sample Input

231 2 351 2 3 4 5

Sample Output

16

题意

给出一个长度为

n
n
的序列,找到两个数,使得两个数异或后的值大于这两个数,求一共有多少对这样的数

Solve

两个数异或值变大的条件:较小数的最高位为1,并且较大数对应的位置为0

将数组升序排序后,将每个数转换成二进制,找前
i
1
i-1
个数,在第
i
i
个数的二进制形式下,有多少满足条件的数

Code

/*************************************************************************	 > Author: WZY	 > School: HPU	 > Created Time:   2019-04-09 19:16:39	 ************************************************************************/#include 
#define ll long long#define ull unsigned long long#define ms(a,b) memset(a,b,sizeof(a))const int inf=(1<<30);const ll INF=(1LL*1<<60);const int maxn=1e6+10;const int mod=1e9+7;const int maxm=1e3+10;using namespace std;int a[maxn];int num[maxn];int cnt[maxn];int main(int argc, char const *argv[]){ #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif ios::sync_with_stdio(false); cin.tie(0); int t; cin>>t; int n; while(t--) { ms(num,0); ms(cnt,0); int ans=0; cin>>n; for(int i=0;i
>a[i]; sort(a,a+n); for(int i=0;i
>=1; } for(int j=0;j<_;j++) { if(!num[j]) ans+=cnt[j]; } cnt[_-1]++; } cout<
<

转载地址:https://www.cnblogs.com/Friends-A/p/11054957.html 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Codeforces1132A——Regular Bracket Sequence(水题)
下一篇:ZOJ 3872: Beauty of Array(思维)

发表评论

最新留言

表示我来过!
[***.240.166.169]2024年04月19日 02时32分52秒