博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(HDU 1695)GCD(容斥+莫比乌斯反演)
阅读量:5250 次
发布时间:2019-06-14

本文共 1971 字,大约阅读时间需要 6 分钟。

GCD

Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 13721    Accepted Submission(s): 5233

Problem Description
Given 5 integers: a, b, c, d, k, you're to find x in a...b, y in c...d that GCD(x, y) = k. GCD(x, y) means the greatest common divisor of x and y. Since the number of choices may be very large, you're only required to output the total number of different number pairs.
Please notice that, (x=5, y=7) and (x=7, y=5) are considered to be the same.
Yoiu can assume that a = c = 1 in all test cases.
 

 

Input
The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 3,000 cases.
Each case contains five integers: a, b, c, d, k, 0 < a <= b <= 100,000, 0 < c <= d <= 100,000, 0 <= k <= 100,000, as described above.
 

 

Output
For each test case, print the number of choices. Use the format in the example.
 

 

Sample Input
2 1 3 1 5 1 1 11014 1 14409 9
 

 

Sample Output
Case 1: 9 Case 2: 736427
Hint
For the first sample input, all the 9 pairs of numbers are (1, 1), (1, 2), (1, 3), (1, 4), (1, 5), (2, 3), (2, 5), (3, 4), (3, 5).
 
莫比乌斯反演两个公式:
(图片转侵删)
若x和y的gcd为k,那么x/k和y/k是互质的,即gcd(x/k,y/k)==1;
题目就转化成了在【1,b/k】和【1,d/k】的区间内求互质的数的对数;
用到莫比乌斯反演函数在于巧妙的构造函数F(x)和f(x)
在这里设F(x)代表在这两个区间内gcd为x或者x的倍数的数的对数
     f (x)代表在这两个区间内gcd为         x            的数的对数
那么这两个函数就满足了关系:
 
那么显然答案就是f(1);
F(x)很容易求出,F(x)=(b/k/x)*(d/k/x);(第一个区间中x倍数的个数*第二个区间中x倍数的个数
用推导公式导出关系
f(1)=mu【1】*F(1)+mu【2】*F(2)+。。。。+mu【min(b,d)】*F(min(b,d));
因为在题目中(a,b)和(b,a)是一种情况,所以要用最后的结果减去b=d=min(b,d)的情况除以2;
总算搞明白了一点,哭。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long#define mod 1000000007#define inf 0x3f3f3f3f#define maxn 100010using namespace std;LL mu[100100];void getMu(){ int N=maxn; for(int i=1;i

 

转载于:https://www.cnblogs.com/brotherHaiNo1/p/8459891.html

你可能感兴趣的文章
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
stap-prep 需要安装那些内核符号
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>
socket初识
查看>>
磁盘测试工具
查看>>
代码变量、函数命名神奇网站
查看>>
redis cli命令
查看>>
Problem B: 占点游戏
查看>>
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
CentOS 简单命令
查看>>
使用&nbsp;SharedPreferences 分类: Andro...
查看>>
TLA+(待续...)
查看>>