日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

因子个数与因子和

發(fā)布時(shí)間:2023/11/29 编程问答 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 因子个数与因子和 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題目:LightOJ:1341 - Aladdin and the Flying Carpet(因子個(gè)數(shù))

It's said that Aladdin had to solve seven mysteries before getting the Magical Lamp which summons a powerful Genie. Here we are concerned about the first mystery.

Aladdin was about to enter to a magical cave, led by the evil sorcerer who disguised himself as Aladdin's uncle, found a strange magical flying carpet at the entrance. There were some strange creatures guarding the entrance of the cave. Aladdin could run, but he knew that there was a high chance of getting caught. So, he decided to use the magical flying carpet. The carpet was rectangular shaped, but not square shaped. Aladdin took the carpet and with the help of it he passed the entrance.

Now you are given the area of the carpet and the length of the minimum possible side of the carpet, your task is to find how many types of carpets are possible. For example, the area of the carpet 12, and the minimum possible side of the carpet is 2, then there can be two types of carpets and their sides are: {2, 6} and {3, 4}.

Input

Input starts with an integer T (≤ 4000), denoting the number of test cases.

Each case starts with a line containing two integers: a b (1 ≤ b ≤ a ≤ 1012) where a denotes the area of the carpet and b denotes the minimum possible side of the carpet.

Output

For each case, print the case number and the number of possible carpets.

Sample Input

Output for Sample Input

2

10 2

12 2

Case 1: 1

Case 2: 2

題意:

  根據(jù)唯一分解定理,先將a唯一分解,得a的所有正約數(shù)的個(gè)數(shù)為sum ,
  因?yàn)轭}目說(shuō)了不會(huì)存在c==d的情況,因此sum要除2 去掉重復(fù)情況,
  然后枚舉小于b的a的約數(shù),拿sum減掉就可以了

數(shù)論原理:

  正整數(shù)n有素因子分解n=p1^a1*p2^a2*p3^a3*···*pn^an 因子個(gè)數(shù)=(a1+1)(a2+2)(a3+3) ···(an+n)

代碼

#include<bits/stdc++.h> using namespace std; const int maxn=1e6+10; int prime[maxn]={1,1,0}; int prime1[maxn]; int sum,num,cnt; long long a,b,temp; void db() //埃式篩 {cnt=0;for(int i=2;i<=sqrt(maxn);i++){if(!prime[i]){for(int j=i+i;j<=maxn;j+=i){prime[j]=1;}}}for(int i=2;i<=maxn;i++){if(!prime[i]){prime1[cnt++]=i;}} } void reslove()  求所有素因子 {for(int j=0;j<cnt&&prime1[j]<=sqrt(temp);j++){int num=0;if(temp%prime1[j]==0){while(temp%prime1[j]==0){num++;temp/=prime1[j];}sum*=(num+1);}}if(temp>1) //如果temp不能被整分,說(shuō)明還有一個(gè)素?cái)?shù)是它的約數(shù),此時(shí)num=1sum*=2; } int main() {db();int t;cin>>t;for(int i=1;i<=t;i++){cin>>a>>b;if(a<b*b)printf("Case %d: 0\n", i);else{sum=1;temp=a;reslove();sum/=2;for(int k=1;k<b;k++){if(a%k==0){sum--;}}printf("Case %d: %d\n",i,sum);} }return 0; }

?



轉(zhuǎn)載于:https://www.cnblogs.com/BYBL/p/10969698.html

總結(jié)

以上是生活随笔為你收集整理的因子个数与因子和的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。