zoukankan      html  css  js  c++  java
  • Team Formation

    Team Formation

    Time Limit: 3 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{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

    2
    3
    1 2 3
    5
    1 2 3 4 5
    

    Sample Output

    1
    6
    

    Author: LIN, Xi
    Source: The 12th Zhejiang Provincial Collegiate Programming Contest

    题意:给定一长度为n的序列,取两数,如果两数异或后的结果大于两数中任意一个,那么称team member,问有多少team member

    从n个数中取2个数,问有多少种方法取的两个数的异或大于两个数的最大数
    思路:如果x的最高位i位是1,y的位是0,且y比x大,i不是y的最高位,异或后这一位变成1,且yi位以前的1也可以保存,则异或后肯定比两个数的最大值还大

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <algorithm>
     5 #include <queue>
     6 #include <cmath>
     7 
     8 using namespace std;
     9 
    10 #define N 100008
    11 
    12 int b[32], bit[32]; // b数组存当前数转化成2进制之后的01序列,bit数组存最高位1是当前下标的数有多少。
    13 int num[N];
    14 
    15 void change(int n)
    16 {
    17     int i = 0;
    18     while(n)
    19     {
    20         b[i++] = n % 2;
    21         n /= 2;
    22     }
    23 }
    24 int main()
    25 {
    26     int t, n, cnt;
    27 
    28     scanf("%d", &t);
    29 
    30     while(t--)
    31     {
    32         cnt = 0;
    33         memset(bit, 0, sizeof(bit));
    34         scanf("%d", &n);
    35 
    36         for(int i = 0; i < n; i++)
    37             scanf("%d", &num[i]);
    38         sort(num, num+n);
    39 
    40         int tmp = (int)log2(num[0]);  // 是num[0]转化成二进制,最高位的1在倒数第几位
    41         bit[tmp]++;
    42         for(int i = 1; i < n; i++)
    43         {
    44             int temp = (int)log2(num[i]);
    45             memset(b, 0, sizeof(b));
    46             change(num[i]);
    47 
    48             for(int j = 0; j < temp; j++)
    49             {
    50                 if(b[j] == 0)  
    51                     cnt += bit[j];   //只要是最高为1的位,异或后都会增大,所以相加
    52             }
    53             bit[temp]++;  // 更新bit
    54         }
    55         printf("%d
    ", cnt);
    56     }
    57     return 0;
    58 }

     

    让未来到来 让过去过去
  • 相关阅读:
    一些常用的方法(1)--去除DataTable中的重复数据
    皕杰报表入门知识(1)
    Red Hat 6.0 Linux系统跳过登录界面直接进入系统
    解决pycharm无法获取安装包文件列表
    sqlalchemy创建数据库自动映射
    python3使用importlib来重复加载模块
    python3使用exec来动态加载模块
    中间件datasnap用流传递数据
    使用fdmemTable来代替clientDataset,解决MySQL5.6(含)以上版本用cds多次更新时的错误
    dxSpreadSheet动态切换Sheet
  • 原文地址:https://www.cnblogs.com/Tinamei/p/4740281.html
Copyright © 2011-2022 走看看