HDU1695 GCD

来源:互联网 发布:cmm软件成熟度模型 编辑:程序博客网 时间:2024/06/18 15:22

题目重现

Given 5 integers: a,b,c,d,k, you’re to find x[a,b],y[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.

You 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<ab100,000,0<cd100,000,0k100,000
,as described above.

Output

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

Sample Input

21 3 1 5 11 11014 1 14409 9

Sample Output

Case 1: 9Case 2: 736427

题解

问题基于一个简单的结论:

1xA,1yB[K|gcd(x,y)]=AKBK


GAB(K)=1xA,1yB[K|gcd(x,y)]FAB(K)=1xA,1yB[K=gcd(x,y)]

可见有:

GAB(K)=K|kFAB(k)

由莫比乌斯反演原理有:

FAB(k)=d1μ(d)GAB(dk)

所以:

FAB(K)=1xA,1yB[K=gcd(x,y)]=d1μ(d)AdKBdK

此题中要求(x,y),(y,x) 不重复计数

不妨设AB

Ans(A,B,K)=FAB(K)FAA(K)2

参考代码

  • HDU 1695 莫比乌斯反演
0 0
原创粉丝点击