码迷,mamicode.com
首页 >  
搜索关键字:莫比乌斯    ( 758个结果
uva11426(莫比乌斯反演)
传送门:GCD Extreme (II)题意:给定n(n#include #include #include #include #include #include #include #include #include #include #include #include #define LL lon...
分类:其他好文   时间:2015-02-24 11:23:41    阅读次数:208
【BZOJ】【2440】【中山市选2011】完全平方数
莫比乌斯函数/容斥原理 PoPoQQQ讲义引入例题= = 比较水……就是莫比乌斯函数的简单应用,也可理解为乱容斥一下…… 二分答案——>求1~x有多少个无平方因子的数Q(x)。引用一下PoPoQQQ的题解:?根据容斥原理可知 对于sqrt(x)以内所有的质数 有? x以内的无平方因子数?=0个...
分类:其他好文   时间:2015-02-22 19:36:17    阅读次数:230
【BZOJ】【2693】JZPTAB
莫比乌斯反演 PoPoQQQ讲义第5题,是BZOJ 2154的升级版(多次询问) 题解:http://blog.csdn.net/popoqqq/article/details/42078725WA:应该输出(ans+P)%P……而不是ans 1 /***********************.....
分类:其他好文   时间:2015-02-22 13:20:42    阅读次数:167
【BZOJ】【2154】Crash的数字表格
莫比乌斯反演 题解:http://www.cnblogs.com/jianglangcaijin/archive/2013/11/27/3446169.html 感觉两次sqrt(n)的枚举是亮点……RE:汗- -b 10^7是8位数,开数组少打了一个0…… 1 /***************.....
分类:其他好文   时间:2015-02-22 12:14:01    阅读次数:142
SPOJ 7001(莫比乌斯反演)
传送门:Visible Lattice Points题意:0#include #include #include #include #include #include #include #include #include #include #include #include #define LL l...
分类:其他好文   时间:2015-02-21 06:27:29    阅读次数:202
SPOJ PGCD(莫比乌斯反演)
传送门:Primes in GCD Table题意:给定两个数和,其中,,求为质数的有多少对?其中和的范围是。分析:这题不能枚举质数来进行莫比乌斯反演,得预处理出∑υ(n/p)(n%p==0).#pragma comment(linker,"/STACK:1024000000,1024000000"...
分类:其他好文   时间:2015-02-21 01:22:36    阅读次数:252
ACdream 1114(莫比乌斯反演)
传送门:Number theory题意:给n个数,n 和 每个数的范围都是 1---222222,求n个数中互质的对数。分析:处理出每个数倍数的个数cnt[i],然后进行莫比乌斯反演,只不过这里的F(i)=cnt[i]*(cnt[i]-1)/2.#pragma comment(linker,"/ST...
分类:其他好文   时间:2015-02-20 23:09:51    阅读次数:241
ACdream 1148(莫比乌斯反演+分块)
传送门:GCD SUM题意:给出N,M执行如下程序:long long ans = 0,ansx = 0,ansy = 0;for(int i = 1; i #include #include #include #include #include #include #include #include...
分类:其他好文   时间:2015-02-20 21:59:10    阅读次数:250
bzoj2301(莫比乌斯反演+分块)
传送门:2301: [HAOI2011]Problem b题意:对于给出的n个询问,每次求有多少个数对(x,y),满足a≤x≤b,c≤y≤d,且gcd(x,y) = k,gcd(x,y)函数为x和y的最大公约数。分析:gcd(x,y)==k等价于gcd(x/k,y/k)==1,根据莫比乌斯反演很容易...
分类:其他好文   时间:2015-02-20 18:33:57    阅读次数:246
hdu1695(莫比乌斯反演)
传送门:GCD题意:求[1,n],[1,m]gcd为k的对数。分析:莫比乌斯入反演门题,gcd(x,y)==k等价于gcd(x/k,y/k)==1,求出[1,n][1,m]互质的对数,在减去[1,2][2,1]之类重复的个数即答案。莫比乌斯反演:46ms#pragma comment(linker,...
分类:其他好文   时间:2015-02-20 17:25:15    阅读次数:192
758条   上一页 1 ... 68 69 70 71 72 ... 76 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!