HDU-1164-Eddy's research I (分解质因数)

由于这道题目数据范围小,所以属于水题。可以采取暴力的做法来解决。

代码如下:

#include"bits/stdc++.h"
using namespace std;
const int maxn=65535;
bool tag[maxn+5];
vector<int>v;int n;
bool judge(int m){
    while(n%m==0){
        if(n==m){
            printf("%d\n",m);
            return true;
        }
        else printf("%d*",m);
        n/=m;
    }
    return false;
}
int main(){
    for(int i=2;i<=maxn;i++){
        if(!tag[i])v.push_back(i);
        for(int j=i<<1;j<=maxn;j+=i)
        tag[j]=true;
    }
    while(~scanf("%d",&n)){
        for(int i=0;i<v.size();i++)
        if(n%v[i]==0&&judge(v[i]))
        break;
    }
    return 0;
}

但是如果把这题的数据范围加到1e8,那么用这种暴力的方法光是打一个素数表都很耗时。如何快速解决1e8的因式分解呢?可以这样想:

1e8以内的数大于1e4的质因子最多只能出现一次(因为1e4的平方等于1e8,所以如果出现一次以上就会超过1e8),而且如果这个数出现了大于1e4的质因子,那么当我们把小于1e4的质因子都除尽时,留下的就是这个大于1e4的质因子。所以我们打素数表时其实不用打到1e8,只要1e4就够了(如果范围是n就打到根号n),这样可以加速了1e4倍。

代码如下:

#include"bits/stdc++.h"
using namespace std;
const int maxn=1e4;
bool tag[maxn+5];
vector<int>v;int n;
bool judge(int m){
    while(n%m==0){
        if(n==m) return true;
        else printf("%d*",m);
        n/=m;
    }
    return false;
}
int main(){
    for(int i=2;i<=maxn;i++){
        if(!tag[i])v.push_back(i);
        for(int j=i<<1;j<=maxn;j+=i)
        tag[j]=true;
    }
    while(~scanf("%d",&n)){
        for(int i=0;i<v.size();i++)
        if(n%v[i]==0&&judge(v[i]))
        break;
        printf("%d\n",n);
    }
    return 0;
}

对于这一题65535的范围maxn只要设为256就够了,其他基本没有改动

HDU-1164-Eddy's research I (分解质因数)

原文地址:https://www.cnblogs.com/Angel-Demon/p/9696977.html

时间: 2024-10-07 12:53:45

HDU-1164-Eddy's research I (分解质因数)的相关文章

hdu 1164 Eddy&#39;s research I

1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<string> 5 #include<cmath> 6 #include<algorithm> 7 using namespace std; 8 #define MAX 65535 9 int prime[MAX+5]; 10 bool vis[MAX+5]; 11 int index=0; 1

杭电 HDU 1164 Eddy&#39;s research I

Eddy's research I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 7117    Accepted Submission(s): 4268 Problem Description Eddy's interest is very extensive, recently  he is interested in prime

HDU 1164 Eddy&#39;s research I【素数筛选法】

思路:将输入的这个数分成n个素数的相乘的结果,用一个数组存储起来.之后再输出就可以了 Eddy's research I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 6633    Accepted Submission(s): 3971 Problem Description Eddy's interest is very ext

HDU 1165 Eddy&#39;s research II

Eddy's research II Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3970    Accepted Submission(s): 1459 Problem Description As is known, Ackermann function plays an important role in the sphere

HDOJ 1164 Eddy&#39;s research I

[题意]:对一个数进行因式分解. [思路]:打表后一个一个除,最大数是65535,所以10000的质数范围苟用. [AC代码]: #include <iostream> #include <cstdlib> #include <cstdio> #include <cmath> #include <algorithm> #include <iomanip> using namespace std; #define MAX 10000 i

hdu 1165 Eddy&#39;s research II(数学题,递推)

// Eddy 继续 Problem Description As is known, Ackermann function plays an important role in the sphere of theoretical computer science. However, in the other hand, the dramatic fast increasing pace of the function caused the value of Ackermann function

HDU 1165 Eddy&#39;s research II (推公式)

Eddy's research II Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 3122    Accepted Submission(s): 1137 Problem Description As is known, Ackermann function plays an important role in the sphere

HDU 1165 Eddy&#39;s research II(递推)

坑了我好久,乍看很简单,记忆化搜索结果爆栈,然后改成递推之后WA . 后来发现,是在计算m=3的数据时出现了错误,因为当m=3时,即使n很小,结果也会很大,所以无法利用m=2时的结果递推,要怎么办呢?  将m=2的结果打印出来可以发现这是一个等差数列,通项为S(n) = 2*n + 3; 这有什么用呢? 我们可以发现,当 m=3时由递推式可以写成A(m,n) = A(2,A(m,n-1)) = 2*A(m,n-1) + 3; 所以只要知道了A(3,0),我们就能递推出所有m=3时的值了 . 细节

HDU 1165 Eddy&#39;s research II(给出递归公式,然后找规律)

- Eddy's research II Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit Status Description As is known, Ackermann function plays an important role in the sphere of theoretical computer science. However, in the other h

HDU 4497 GCD and LCM (分解质因数)

链接 : ?? http://acm.hdu.edu.cn/showproblem.php?pid=4497 假设G不是L的约数 就不可能找到三个数. L的全部素因子一定包括G的全部素因子 而且次方数一定大于等于G的.仅仅须要三个数 对于每个素因子的次方数 三个的最小值是G的,最大值是L的.考虑三个相应的次方数都不一样.那么当中两个是确定的 一个是G的一个是L的 剩下的一个在G和L的之间. 算上排列 总共同拥有6种.或者当中两个是一样的,那么也有6种情况. 最后能够合并计算. //#pragma