UVa 11417 GCD (欧拉φ函数)

本文提供了一种解决 UVA 11417-GCD 问题的方法,通过分析 G 的定义,给出了一个 O(NloglogN) 复杂度的高效算法实现,并附带完整的 C++ 代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

11417 - GCD

Time limit: 2.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=2412

Given the value of N, you will have to find the value of G. The definition of G is given below:

 

Here GCD(i,j) means the greatest common divisor of integer i and integer j.

 

For those who have trouble understanding summation notation, the meaning of G is given in the following code:

G=0;

for(i=1;i<N;i++)

for(j=i+1;j<=N;j++)

{

    G+=GCD(i,j);

}

/*Here GCD() is a function that finds the greatest common divisor of the two input numbers*/

 

Input

The input file contains at most 100 lines of inputs. Each line contains an integer N (1<N<501). The meaning of N is given in the problem statement. Input is terminated by a line containing a single zero.  This zero should not be processed.

 

Output

For each line of input produce one line of output. This line contains the value of G for corresponding N.

 

Sample Input                 Output for Sample Input

10

100

500 

0                                      

 

67

13015

442011                                   


如何求?

思路:可以直接算,复杂度O(N^2 logN),但是我们可以找到一种复杂度更小的算法O(N loglogN)

以10为例,与之互素的有φ(10)=4个(1,3,7,9),与之gcd=2的有φ(10/2)=4个(2,4,6,8),与之gcd=5的有φ(10/5)=1个(5)

这样,10提供的G值就是5*φ(2)+2*φ(5)+φ(10)=5+8+4=17

根据上述计算过程可以得到如下公式:


(方括号指艾弗森约定,当方括号内语句为真时其值为1,假时为0,参见《具体数学》P21)


完整代码:

/*0.013s*/

#include<cstdio>
const int maxn = 501;

int phi[maxn], G[maxn];

void init()
{
	int i, j;
	for (i = 2; i < maxn; ++i)
		phi[i] = i;
	for (i = 2; i < maxn; ++i)
	{
		if (phi[i] == i)
			for (j = i; j < maxn; j += i)
				phi[j] = phi[j] / i * (i - 1);///计算欧拉φ函数
		for (j = 1; j * i < maxn; ++j)
			G[j * i] += j * phi[i];
	}
	for (i = 3; i < maxn; ++i)
		G[i] += G[i - 1];
}

int main()
{
	init();
	int n;
	while (scanf("%d", &n), n)
		printf("%d\n", G[n]);
	return 0;
}

转载请注明: http://blog.youkuaiyun.com/synapse7/article/details/12882087

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值