Codeforces627A【数学·有意思】

本文探讨了一类特殊的方程组求解问题,即寻找所有满足条件 a + b = s 且 a^b = x 的正整数对 (a, b)。通过数学转换和编程实现,提出了一种有效算法来解决该问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题意:
求有多少对( a , b ),a+b=s,a^b=x.(正整数)
思路:
a+b=a^b+a&b*2;

#include <iostream>
#include <cstdio>
#include<vector>
#include <cstring>
#include <algorithm>
using namespace std;
typedef __int64 LL;

int main()
{
    LL s,x;
    scanf("%I64d%I64d",&s,&x);
    LL t=(s-x)/2;
    if(s<x||(s-x)%2||x&t)
    {
        puts("0");
        return 0;
    }
    LL ans=0;
    int cnt=0;
    bool flag=true;
    if(s==x)
        ans-=2;
    while(x)
    {
        if(x&1)
            cnt++;
        x>>=1;
    }
    ans+=(1LL<<cnt);
    printf("%I64d\n",ans);
    return 0;
}
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值