Two positive integers a and b have a sum of s and a bitwise XOR of x. How many possible values are there for the ordered pair (a, b)?
Input
The first line of the input contains two integers s and x (2 ≤ s ≤ 1012, 0 ≤ x ≤ 1012), the sum and bitwise xor of the pair of positive integers, respectively.
Output
Print a single integer, the number of solutions to the given conditions. If no solutions exist, print 0.
Examples
input
9 5
output
4
input
3 3
output
2
input
5 2
output
0
Note
In the first sample, we have the following solutions: (2, 7), (3, 6), (6, 3), (7, 2).
In the second sample, the only solutions are (1, 2) and (2, 1).
Solution:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #include <bits/stdc++.h> using namespace std; int main() { long long sum, x; cin >> sum >> x; long long a = (sum - x) / 2; if (a < 0 || x + 2 * a != sum || (x & a) != 0) { cout << 0 << endl; return 0; } long long bits = 0; long long tmp = x; while (tmp > 0) { bits += tmp & 1; tmp >>= 1; } long long ans = 1LL << bits; if (a == 0) { ans -= 2; } cout << ans << endl; return 0; } |
Related posts:
Delivery Club
Letters and Question Marks
Beautiful Bracket Sequence (hard version)
Construct the String
Upgrading Tree
Strange Function
K Integers
Worms
Height All the Same
Prefix function. Knuth–Morris–Pratt algorithm
2 - SAT
Parliament of Berland
Arbitrary-Precision Arithmetic
Calculating the determinant using Kraut method in O(N3)
Factorial modulo p
Disjoint Set Union
Smallest Word
Flights
Sereja ans Anagrams
Counting Skyscrapers
Circle of Numbers
15 Puzzle Game: Existence Of The Solution
Bear and Displayed Friends
Refactoring
Bits And Pieces
Maximum flow - Ford-Fulkerson and Edmonds-Karp
Dynamic Programming on Broken Profile
Infinite Path
To Hack or not to Hack
Potions Homework
Counting Rectangles is Fun
Marbles