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

P1075 质因数分解

时间:2018-07-16 11:26:06      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:cstring   clu   质因数   质数   math   mes   复杂度   正整数   string   

P1075 质因数分解

题目描述
已知正整数 n 是两个不同的质数的乘积,试求出两者中较大的那个质数。

输入输出格式
输入格式:
一个正整数 n 。

输出格式:
一个正整数 p ,即较大的那个质数。


水题也要凑博客啊

其实不然,这里记录一下质因数分解,使用试除法,复杂度\(O(\sqrt{N})\)

a = RD();
    int sqr = sqrt(a);
    for(int i = 2;i <= sqr;i++){
        if(a % i == 0)p[++tot] = i;
        while(a % i == 0)a /= i, m[tot]++;
        }
    if(a > 1)p[++tot] = a,m[tot] = 1;//a为质数的情况

Code

#include<iostream>
#include<cstdio>
#include<queue>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
int RD(){
    int flag = 1, out = 0;char c = getchar();
    while(c < '0' || c > '9'){if(c == '-')flag = -1;c = getchar();}
    while(c >= '0' && c <= '9'){out = out * 10 + c - '0';c = getchar();}
    return flag * out;
    }
const int maxn = 10000019;
int a, tot;
int p[maxn], m[maxn];
int main(){
    a = RD();
    int sqr = sqrt(a);
    for(int i = 2;i <= sqr;i++){
        if(a % i == 0)p[++tot] = i;
        while(a % i == 0)a /= i, m[tot]++;
        }
    if(a > 1)p[++tot] = a,m[tot] = 1;
    printf("%d\n", p[2]);
    return 0;
    }

P1075 质因数分解

标签:cstring   clu   质因数   质数   math   mes   复杂度   正整数   string   

原文地址:https://www.cnblogs.com/Tony-Double-Sky/p/9315991.html

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