Largest prime factor

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Largest prime factor相关的知识,希望对你有一定的参考价值。

problem 3:Largest prime factor

题意:求600851475143的最大的质因数

代码如下:

 1 #ifndef PRO3_H_INCLUDED
 2 #define PRO3_H_INCLUDED
 3 
 4 #include "prime.h"
 5 
 6 namespace pro3{
 7     long long solve(){
 8         long long n=600851475143LL,maxn=0;;
 9         for(long long i=1;i*i<=n;++i)
10         if(n%i==0){
11             if(isPrime(n/i))return n/i;
12             else if(isPrime(i))maxn=i;
13         }
14         return 1>maxn?1:maxn;
15     }
16 }
17 
18 #endif // PRO3_H_INCLUDED

其中,bool isPrime(long long x)如下(后面不再赘述):

技术分享
1 bool isPrime(long long x){
2     if(x<=1)return 0;
3     for(long long i=2;i*i<=x;++i)
4         if(x%i==0)return 0;
5     return 1;
6 }
bool isPrime(long long x)

 

以上是关于Largest prime factor的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2136 Largest prime factor (最大素因子序号,cin超时呀!!!)

HD-ACM算法专攻系列(18)——Largest prime factor

「LeetCode」0952-Largest Component Size by Common Factor(Go)

PAT甲级--Prime Factors (25)

1059. Prime Factors (25)

PAT 1059. Prime Factors