码迷,mamicode.com
首页 > 其他好文 > 详细

51 Nod 1179 最大的最大公约数(筛法)

时间:2017-09-16 22:09:21      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:html   sqrt   cin   using   pre   iostream   size   ref   stream   

题目链接:点我点我

题意:就是题目的名字

题解:从大往小筛一下就可以了,时间复杂度O( n* sqrt(max{num[i]}) )。

 1 #include <cstring>
 2 #include <iostream>
 3 #include <algorithm>
 4 using namespace std;
 5 
 6 const int N=1000000+10;
 7 int num[N];
 8 
 9 int main(){
10     memset(num,0,sizeof(num));
11     int n,tmp,cnt,M_num=0;
12     cin>>n;
13     
14     for(int i=1;i<=n;i++){
15         cin>>tmp;
16         num[tmp]=1;
17         M_num=max(M_num,tmp);
18     }
19     for(int i=M_num;i>=1;i--){
20         cnt=0;
21         for(int j=i;j<=M_num;j+=i){
22             if(num[j]==1) cnt++;
23             if(cnt==2) {cout<<i<<endl;return 0;} 
24         }
25     }
26     return 0;
27 }

 

51 Nod 1179 最大的最大公约数(筛法)

标签:html   sqrt   cin   using   pre   iostream   size   ref   stream   

原文地址:http://www.cnblogs.com/Leonard-/p/7532479.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!