分解質因數

2022-03-22 19:18:28 字數 2030 閱讀 6668

分解質因數:

1.保留重複

#include#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

using

namespace

std;

void fre()

#define ms(x,y) memset(x,y,sizeof(x))

#define mc(x,y) memcpy(x,y,sizeof(x))

#define mp(x,y) make_pair(x,y)

#define ls o<<1

#define rs o<<1|1typedef

long

long

ll;typedef unsigned

long

long

ul;typedef unsigned

intui;

template

inline void gmax(t1 &a,t2 b)

template

inline void gmin(t1 &a,t2 b)

const

int n=1e5,m=1e6,z=1e9+7,ms63=0x3f3f3f3f

;int

a[n],n;

intmain()

//}}

if(n>1) a[num++] = n; //

如果n最後剩下的是乙個大於1的數,那麼這是最大的質因子

for(int i=0; i)

printf("\n

");}}/*

1202 2 2 3 5

*/

view code

2.不保留重複

#include#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

using

namespace

std;

void fre()

#define ms(x,y) memset(x,y,sizeof(x))

#define mc(x,y) memcpy(x,y,sizeof(x))

#define mp(x,y) make_pair(x,y)

#define ls o<<1

#define rs o<<1|1typedef

long

long

ll;typedef unsigned

long

long

ul;typedef unsigned

intui;

template

inline void gmax(t1 &a,t2 b)

template

inline void gmin(t1 &a,t2 b)

const

int n=1e5,m=1e6,z=1e9+7,ms63=0x3f3f3f3f

;int

a[n],n;

intmain()}}

if(n>1) a[num++] = n; //

如果n最後剩下的是乙個大於1的數,那麼這是最大的質因子

for(int i=0; i)

printf("\n

");}}/*

1202 3 5

*/

view code

以上的兩種方法都是用樸素的整除性來判斷是否是素數。

也可以用篩法先篩出素數,存在陣列中,那麼就是n % prime[i] == 0

分解質因數

質因數概念 每個合數都可以寫成幾個質數相乘的形式,這幾個質數就都叫做這個合數的質因數。如果乙個質數是某個數的因數,那麼就說這個質數是這個數的質因數。而這個因數一定是乙個質數。演算法原理 先根據需要分解的合數生成乙個質數表。然後依次從小到大依次除合數,每次除之後都將儲存步驟。表達不好,還是看 吧 us...

分解質因數

分解質因數 問題描述 求出區間 a,b 中所有整數的質因數分解。輸入格式 輸入兩個整數a,b。輸出格式 每行輸出乙個數的分解,形如k a1 a2 a3.a1 a2 a3.k也是從小到大的 具體可看樣例 樣例輸入 3 10 樣例輸出 3 34 2 2 5 56 2 3 7 78 2 2 2 9 3 3...

分解質因數

大數的質因數分解一直以來是亟需解決的難題。本文從最基本的試除法開始,分解質因數的方法。下面的程式在開頭定義了乙個巨集opt,如果刪掉這個定義,就可以執行最原始的演算法。一 樸素演算法 include include include using namespace std define opt int...