HDU2710 Max Factor

Posted ac-ac

tags:

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

题意:求输入的n个数中所含素因子最大的数字。

注意:此题中1也是素数。

思路:数据不算太大,朴素判断素数即可。

   max标记最大素因子。

   pos标记所含最大素因子的数。

#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int f(int n)
{
    for(int i = 2; i < n; i++)
        if(n%i==0)
            return 0;
    return 1;
}
int main(void)
{
    int t;
    while(~scanf("%d",&t))
    {
        int pos = 0;
        int max = 0;
        while(t--)
        {
            int n;
            scanf("%d",&n); 
            for(int i = 1; i <= n; i++)
            {
                if(n%i==0&&f(i))
                {
                    if(max<i)
                    {
                        max = i;
                        pos = n;
                    }
                }
            }
        }
        printf("%d
",pos);
    }
    return 0;
}

 

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

HDU 5428 [The Factor] 分解质因数

poj3048 Max Factor

HDU 2136 Largest prime factor (素数打表。。。)

HDU 5428 The Factor 分解因式

Error in Summary.factor ‘max’ not meaningful for factors

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