Codeforces 76D 位运算
Posted pkgunboat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 76D 位运算相关的知识,希望对你有一定的参考价值。
题意:给你两个数x 和 y, x = a + b, y = a XOR b,问有没有合法的a和b满足这个等式?
思路:有恒等式: a + b = ((a & b) << 1) + (a ^ b),所以x - y = ((a & b) << 1), 如果x - y奇数,那就没有合法方案,否则我们可以构造出来.相当于已知a ^ b和a & b, 可以构造一组解了。
代码:
#include <bits/stdc++.h> #define ull unsigned long long using namespace std; int main() { ull x, y, z; ull ans1 = 0, ans2 = 0; scanf("%llu%llu", &x, &y); z = x - y; if(z & 1) printf("-1\n"); else { z >>= 1; for (int i = 0; i < 64; i++) { if(((z >> i) & 1) == 1) { ans1 |= (1llu << i); ans2 |= (1llu << i); } else { if(((y >> i) & 1) == 1) ans2 |= (1llu << i); } } printf("%llu %llu\n", ans1, ans2); } }
以上是关于Codeforces 76D 位运算的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces ECR 83 C. Adding Powers (位运算)
Codeforces 868C Qualification Rounds - 位运算
Codeforces 868D Huge Strings - 位运算 - 暴力
Codeforces Round #613 (Div. 2) D - Dr. Evil Underscores(思维,位运算)
Codeforces Round #590 (Div. 3) D. Distinct Characters Queries(线段树, 位运算)