互质数的个数(欧拉函数)C/C++

在这里插入图片描述
在这里插入图片描述
欧拉函数 O(n)=n(1-1/P1)(1-1/P2)…(1-1/Pn) ,其中P1…Pn为n的质因子,求出来的结果就是题目所求。
在这里插入图片描述

不知道为社么这么写时间超限,下面那种方式写就能过。

#include<iostream>
#include<cstdio>
#include<iomanip>
#include<cstdlib>
#include <algorithm>
#include<string.h>
#include<queue> 
#include<math.h>
#include<set>
#define ll long long
using namespace std;

int main()
{
	int t;
	cin >> t ;
	while(t--)
	{
		int n,ans;
		cin >> n;
		ans=n;
		for(int i=2;i*i<=n;i++)
		{
			if(n%i==0) 
			{//原理:o(n)=n*(1-1/p1)+...+(1-1/pn)p1...pn表示为n的质因子.
				ans=ans/i*(i-1);//先除后乘,避免溢出。
				while(n%i==0){
					n/=i;
				}
			}
		}
		if(n>1)ans=ans/n*(n-1);
		cout << ans << endl ;
	}
	
	return 0;
}

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<cmath>
using namespace std;
typedef long long LL;
const LL maxa=1e10+10;
LL euler_deall(LL n){
	LL res=n;
	for(LL i=2;i*i<=n;i++){
		if(n%i==0){
			res=res/i*(i-1);
			for(;n%i==0;n/=i);
		}
	}
	if(n!=1)	res=res/n*(n-1);
	return res;
}
int main(){
	int t;
	scanf("%d",&t);
	while(t--){
		LL	n;
		scanf("%lld",&n);
		printf("%lld\n",euler_deall(n));	
	} 
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值