codeforces 76D plus and xor

D. Plus and xor
time limit per test
0.5 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Bitwise exclusive OR (or bitwise addition modulo two) is a binary operation which is equivalent to applying logical exclusive OR to every pair of bits located on the same positions in binary notation of operands. In other words, a binary digit of the result is equal to 1 if and only if bits on the respective positions in the operands are different.

For example, if X = 10910 = 11011012, Y = 4110 = 1010012, then:

X xor Y  =  6810  =  10001002.

Write a program, which takes two non-negative integers A and B as an input and finds two non-negative integers X and Y, which satisfy the following conditions:

  • A = X + Y
  • B  =  X xor Y, where xor is bitwise exclusive or.
  • X is the smallest number among all numbers for which the first two conditions are true.
Input

The first line contains integer number A and the second line contains integer number B (0 ≤ A, B ≤ 264 - 1).

Output

The only output line should contain two integer non-negative numbers X and Y. Print the only number -1 if there is no answer.

Examples
Input
142
76
Output
33 109
题目大意:

给定的两个数a,b,满足x+y=a,x^y=b,输出x最小的一组x,y

思路:

因为x^y是不进位的加法

所以 A的二进制中的 进位得到的1 可以由 A-B 得到

然后若整除2 那么就有解 ,解就是 (A-B)/2

若不能则无解

#include <iostream>
#include <cmath>
#include <cstdio>

using namespace std;

typedef long long ll;

//a = x + y 
//b = x ^ y


int main() {
	ll a,b;
	
	cin >> a >> b;
	ll x = (a - b) / 2;
	ll y = x + b;
    
    	
    if(x + y == a) {
        printf("%lld %lld\n",x,y);
    } else {
        printf("-1\n");
    }
    
	return 0;
}

















  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值