其他分享
首页 > 其他分享> > 512 分解质因数 唯一分解定理 试除法

512 分解质因数 唯一分解定理 试除法

作者:互联网

视频链接:

 Luogu P2043 质因子分解

#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;

int n;
int a[10001]; //质因子的个数

void decompose(int x){ //分解质因数
  for(int i=2; i*i<=x; i++)
    while(x%i==0) a[i]++, x/=i;
  if(x>1) a[x]++;
}
int main(){
  cin >> n;
  for(int i=2; i<=n; i++) decompose(i);
    for(int i=1;i<=n;i++)
    if(a[i]) cout<<i<<" "<<a[i]<<endl;
  return 0;
}

 

标签:质因数,10001,512,int,因子,分解,include
来源: https://www.cnblogs.com/dx123/p/16687746.html