Codeforces 769D k-Interesting Pairs Of Integers【思维+预处理+暴力枚举】

D. k-Interesting Pairs Of Integers
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya has the sequence consisting of n integers. Vasya consider the pair of integers x and y k-interesting, if their binary representation differs from each other exactly in k bits. For example, if k = 2, the pair of integers x = 5 and y = 3 is k-interesting, because their binary representation x=101 and y=011 differs exactly in two bits.

Vasya wants to know how many pairs of indexes (i, j) are in his sequence so that i < j and the pair of integers ai and aj is k-interesting. Your task is to help Vasya and determine this number.

Input

The first line contains two integers n and k (2 ≤ n ≤ 105, 0 ≤ k ≤ 14) — the number of integers in Vasya's sequence and the number of bits in which integers in k-interesting pair should differ.

The second line contains the sequence a1, a2, ..., an (0 ≤ ai ≤ 104), which Vasya has.

Output

Print the number of pairs (i, j) so that i < j and the pair of integers ai and aj is k-interesting.

Examples
Input
4 1
0 3 2 1
Output
4
Input
6 0
200 100 100 100 200 200
Output
6
Note

In the first test there are 4 k-interesting pairs:

  • (1, 3),
  • (1, 4),
  • (2, 3),
  • (2, 4).

In the second test k = 0. Consequently, integers in any k-interesting pair should be equal to themselves. Thus, for the second test there are 6 k-interesting pairs:

  • (1, 5),
  • (1, 6),
  • (2, 3),
  • (2, 4),
  • (3, 4),
  • (5, 6). 

题目大意:

给你N个数的一个序列,如果有两个数二进制中有K个位子不同,那么对应就算作一对可行解,问一共有多少对可行解。


思路:


问有K个位子不同,其实就是两个数亦或之后的结果有几个1.

观察到ai<=1e4,那么我们可以预处理出一个数组num【i】,表示数字i的二进制有几个1.

所以接下来我们O(1e4*1e4)去枚举两个数的异或值,看其num【i^j】是否==k.如果是,统计答案。


这里注意一点,只预处理1e4大小的num【i】是不够的,2e4才够。

因为两个数亦或的结果可能是要大于1e4的。


Ac代码:

#include<stdio.h>
#include<string.h>
using namespace std;
#define ll __int64
int num[20050];
ll vis[20050];
void init()
{
    memset(num,0,sizeof(num));
    for(int i=0;i<20400;i++)
    {
        int tmp=i;
        while(tmp)
        {
            num[i]+=tmp%2;
            tmp/=2;
        }
    }
}
int main()
{
    init();
    int n,k;
    while(~scanf("%d%d",&n,&k))
    {
        memset(vis,0,sizeof(vis));
        for(int i=0;i<n;i++)
        {
            int x;
            scanf("%d",&x);
            vis[x]++;
        }
        ll output=0;
        for(int i=0;i<10400;i++)
        {
            if(vis[i]==0)continue;
            for(int j=i;j<10400;j++)
            {
                if(vis[j]>0)
                {
                    if(num[(i^j)]==k)
                    {
                        if(i==j)output+=(vis[i])*(vis[i]-1)/2;
                        else
                        output+=vis[i]*vis[j];
                    }
                }
            }
        }
        printf("%I64d\n",output);
    }
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值