[关闭]
@Chilling 2016-08-11T07:29:36.000000Z 字数 1360 阅读 971

HDU-2710: Max Factor(埃式筛法)

数论


Description

To improve the organization of his farm, Farmer John labels each of his N (1 <= N <= 5,000) cows with a distinct serial number in the range 1..20,000. Unfortunately, he is unaware that the cows interpret some serial numbers as better than others. In particular, a cow whose serial number has the highest prime factor enjoys the highest social standing among all the other cows.

(Recall that a prime number is just a number that has no divisors except for 1 and itself. The number 7 is prime while the number 6, being divisible by 2 and 3, is not).

Given a set of N (1 <= N <= 5,000) serial numbers in the range 1..20,000, determine the one that has the largest prime factor.

Input

Output

Sample Input

4
36
38
40
42

Sample Output

38

题意:输入n,再输入n个数,找出n个数当中拥有最大素因子的数,如果同时拥有最大的素因子,输出先输入的那个数。

分析:利用埃式筛法,预处理1-20000内的素数,然后判断…xjb写一下就可以(´・ω・`)


  1. #include<stdio.h>
  2. #include<math.h>
  3. #include<string.h>
  4. #define maxn 20005
  5. bool isprime[maxn];
  6. void primeform()
  7. {
  8. memset(isprime,true,sizeof(isprime));
  9. int m=(int)sqrt(maxn+0.5)+1;
  10. for(int i=2;i<=maxn/2;i++)
  11. {
  12. if(isprime[i])
  13. for(int j=i*2;j<=maxn;j+=i)
  14. isprime[j]=false;
  15. }
  16. }
  17. int main()
  18. {
  19. int n,x,i,m,y;
  20. primeform();
  21. while(scanf("%d",&n)!=EOF)
  22. {
  23. m=-1;
  24. while(n--)
  25. {
  26. scanf("%d",&x);
  27. for(i=1;i<=x;i++)
  28. {
  29. if(x%i==0&&isprime[x/i])
  30. {
  31. if(x/i>m)
  32. {
  33. m=x/i;
  34. y=x;
  35. }
  36. break;
  37. }
  38. }
  39. }
  40. printf("%d\n",y);
  41. }
  42. return 0;
  43. }
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注