Codeforces 635C XOR Equation (脑洞)

题意

给出一个s和一个x(s <= 1e12, x <= 1e12),求有多少对数相加等于s异或等于x。

思路

对于任意a和b,我们有s = a ^ b + (a & b) * 2,然后能得到a & b=(s - x) / 2。
那么显然当s < x或者s - x是最低位为1的时候无解 。
得到a & b之后还有一个重要的判定就是a & b和x相与不为0的时候也是不可能存在的。
然后就按照异或值按位找就可以了。

代码

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <list>
#include <string>
#include <math.h>
#include <stdlib.h>
#include <time.h>
using namespace std;
#define LL long long
#define Lowbit(x) ((x)&(-x))
#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1|1
#define MP(a, b) make_pair(a, b)
const int INF = 0x3f3f3f3f;
const int MOD = 1000000007;
const int maxn = 1e5 + 10;
const double eps = 1e-8;
const double PI = acos(-1.0);
typedef pair<int, int> pii;

int main()
{
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    LL s, x;
    cin >> s >> x;
    if (s < x || (s - x) & 1)
        return puts("0");
    LL And = (s - x) >> 1;
    if (x & And) return puts("0");
    LL ans = s == x ? -2 : 0;
    int cnt = 0;
    while (x)
    {
        if (x & 1) cnt++;
        x >>= 1;
    }
    ans += 1LL << cnt;
    cout << ans << endl;
    return 0;
}

你可能感兴趣的:(codeforces)