首页 > 代码库 > UVA-12716 - GCD XOR
UVA-12716 - GCD XOR
【思路】a^b = c等价于a^c = b 所以枚举a和c,而a和c全部枚举肯定TLE,所以高效算法:通过c是a的约数这个关系来枚举会减小循环,必须要将c放在循环外面,因为c的情况比较少。其实本题就是要求:c=a-b(规律),c=a^b
以下是高神的AC代码,很好很强大:
#include <cstdio> #include <iostream> #include <cmath> #include <string> using namespace std; #define maxn 30000000 int s[30000000+10]; int init(){ int sum = 0; for(int c = 1; c <= maxn/2; c++){ //类似素数筛选法 for(int a = c+c ; a <= maxn ; a += c){ int b = a - c; if((a ^ b) == c) s[a]++; // a 所满足的所有可能。 因为 a < n 在求 n的时候 要把前n项全部加起来 } } for(int i = 2; i <= maxn; i++) //前i个一共有多少,真是巧妙 s[i] += s[i-1]; } int main (){ int counts = 0,num; scanf("%d",&num); init(); while(num--){ int n; scanf("%d",&n); printf("Case %d: %d\n",++counts,s[n]); } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。