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

数论——HDU - 2136

时间:2019-08-14 17:31:04      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:mes   acm   tar   iostream   cto   prime   题目   problem   typedef   

题目链接

题目含义

找出一个数最大素数因子的序号

题目分析

我们可以在筛素数的同时,用这个素数标记它的倍数,说明这些倍数一定有它这个素数因子

这样筛一遍下来,一个数大的素数因子就会覆盖它小的素数因子

题目代码

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<vector>
using namespace std;
typedef long long LL;
const int maxn=1000007;
int prime[maxn],num[maxn];
bool check[maxn];
int cnt=0;
void Prime(){
    num[1]=0;
    for(int i=2;i<maxn;i++)
    if(!check[i]){
        prime[cnt++]=i;
        for(int j=1;j*i<maxn;j++){
            check[j*i]=true;
            num[j*i]=cnt;
        }
    }
}
int main(){
    Prime();
    int n;
    while(~scanf("%d",&n)){
        printf("%d\n",num[n]);
    }
    return 0;
}

 

数论——HDU - 2136

标签:mes   acm   tar   iostream   cto   prime   题目   problem   typedef   

原文地址:https://www.cnblogs.com/helman/p/11352527.html

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