因子个数与因子和

题目:LightOJ:1341 - Aladdin and the Flying Carpet(因子个数)

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

题意:

  根据唯一分解定理,先将a唯一分解,得a的所有正约数的个数为sum ,
  因为题目说了不会存在c==d的情况,因此sum要除2 去掉重复情况,
  然后枚举小于b的a的约数,拿sum减掉就可以了

数论原理:

  正整数n有素因子分解n=p1^a1*p2^a2*p3^a3*···*pn^an 
  因子个数=(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不能被整分,说明还有一个素数是它的约数,此时num=1
    sum*=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;
} 

 



posted @ 2019-06-03 19:56  ふるやれいRX-7  阅读(264)  评论(0编辑  收藏  举报