1. 程式人生 > >hdu 1215 求約數和 唯一分解定理的基本運用

hdu 1215 求約數和 唯一分解定理的基本運用

span pac pid vector type == 素數 ring 題意

http://acm.hdu.edu.cn/showproblem.php?pid=1215

題意:求解小於n的所有因子和

利用數論的唯一分解定理。

若n = p1^e1 * p2^e2 * ……*pn^en(任何一個數都可以分解成素數乘積)

則n的因子個數為 (1+e1)(1+e2)……(1+en)

n的各個因子的和為(1+p1+p1^2+……+p1^e1)(1+p2+p2^2+……+p2^e2)……(1+pn+pn^2+……+pn^en)

(把式子化簡就知道為什麽了)

ac代碼:

#include <cstdio>
#include <iostream>
#include 
<cstring> #include <queue> #include <vector> using namespace std; typedef long long ll; ll pow(ll x,ll n) { ll f=1; for(ll i=1;i<=n;i++) { f*=x; } return f; } ll solve(ll n) { ll ans=1; for(ll i=2;i*i<=n;i++) { if(n%i==0) {
//cout<<i<<endl; ll temp=1; ll ret=1; while(n%i==0) { temp+=pow(i,ret++); n/=i; } ans*=temp; } } if(n>1) ans*=(n+1); return ans; } int main() { ll t; cin>>t;
while(t--) { ll n; cin>>n; cout<<solve(n)-n<<endl; } return 0; }

hdu 1215 求約數和 唯一分解定理的基本運用