There are 3 integers a, b, w.
There are 2 equations –
w+a=b
a (bitwise AND) b = 0;
I was given the value of w and he asked me to calculate the number of pairs (a, b) satisfying the two equations.
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
There are 3 integers a, b, w.
There are 2 equations –
w+a=b
a (bitwise AND) b = 0;
I was given the value of w and he asked me to calculate the number of pairs (a, b) satisfying the two equations.
Name |
---|
Let i be the left-most set bit in m (0 -based), then for ever a = "111111111..00000", where 1 appears aleast two times, and zero appears i times, then a&b = a&(a + w) = 0
Therefore the number of solutions is ∞ (for positive w).
you are right that is why I am asking about constraints.
constraints?
I guess the first equation should look like a + b = w instead of a + w = b.
In this case answer is equal to 2ones(w) where ones(w) is amount of ones in binary representation of w.
a&b = 0 says that there is no common set bit in a and b. In this case sum operation equals to bitewise-or operation, because there is no digit overflows in our sum.
So now we have these equations:
a&b = 0
a|b = w
As we only use bitwise operations we can solve the problem for each bit independently and then multiply our results for all bits.
If current bit in w is zero, only possible solution is a = 0; b = 0. Answer is 1.
If current bit in w is one, there are two solutions: a = 0; b = 1 and a = 1; b = 0. Answer is 2.
Final answer is 2ones(w)·1zeroes(w) which is equal to 2ones(w).
If w = 0 then we have a = b, and the only possible solution for this is a = b = a&b = 0.
If w is positive we can generate infinte amount of pairs (a, b) that satisfy both equations. Let's onsider w = 13 and look at binary presetation of some correct pairs (a, b). It is easy to see the pattern that generates some of them:
As we have no other limitations answer is ∞ for any positive w.
What if there is a limit for case
a + w = b