Problem Description
Diophantus of Alexandria was an egypt mathematician living in Alexandria. He was one of the first mathematicians to study equations where variables were restricted to integral values. In honor of him, these equations are commonly called diophantine equations.
One of the most famous diophantine equation is x^n + y^n = z^n. Fermat suggested that for n > 2, there are no solutions with positive integral values for x, y and z. A proof of this theorem (called Fermat's last theorem) was found only recently by Andrew Wiles.
Consider the following diophantine equation:
1 / x + 1 / y = 1 / n where x, y, n ∈ N+ (1)
Diophantus is interested in the following question: for a given n, how many distinct solutions (i. e., solutions satisfying x ≤ y) does equation (1) have? For example, for n = 4, there are exactly three distinct solutions:
1 / 5 + 1 / 20 = 1 / 4
1 / 6 + 1 / 12 = 1 / 4
1 / 8 + 1 / 8 = 1 / 4
Clearly, enumerating these solutions can become tedious for bigger values of n. Can you help Diophantus compute the number of distinct solutions for big values of n quickly?
Consider the following diophantine equation:
Diophantus is interested in the following question: for a given n, how many distinct solutions (i. e., solutions satisfying x ≤ y) does equation (1) have? For example, for n = 4, there are exactly three distinct solutions:
1 / 6 + 1 / 12 = 1 / 4
1 / 8 + 1 / 8 = 1 / 4
Clearly, enumerating these solutions can become tedious for bigger values of n. Can you help Diophantus compute the number of distinct solutions for big values of n quickly?
Input
The first line contains the number of scenarios. Each scenario consists of one line containing a single number n (1 ≤ n ≤ 10^9).
Output
The output for every scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Next, print a single line with the number of distinct solutions of equation (1) for the given value of n. Terminate each scenario
with a blank line.
Sample Input
2
4
1260
Sample Output
Scenario #1:
3
Scenario #2:
113
通过做这题学会了点数论知识:
定理1: 一个正整数 n 可以用素因子唯一表示为 p1^r1 * p2^r2 * ... pk^rk (其中 pi 为素数) , 那么这个数的因子的个数就是,(r1+1)*(r2+1)~(rk+1).
定理2:如果一个数字 n = p1^r1 * p2^r2 * ... pk^rk ,那么 n*n = p1^r1 * p2^r2 * ... pk^rk * p1^r1 * p2^r2 * ... pk^rk ,它的因子的个数就是 (2*r1+1)*(2*r2+1)~(2*rk+1).
假设y=n+kx=n*(n+k)/k->x=n^2/k+n
因子数就是num=(1+r1)*(1+r2)*(1+r3)~
n*n的因子数就是cnt=(1+2*r1)*(1+2*r2)~
代码:
LANGUAGE:C
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
char isprime[50000];
int prime[10000];
int main()
{
int n,i,j,p,testcase,mul,sq,t,s=1;
memset(isprime,-1,sizeof(isprime));
for(i=2;i<250;i++)
for(j=i*2;j<50000;j+=i)
isprime[j]=0;
for(i=2,p=0;i<50000;i++)
if(isprime[i]!=0)prime[(p)++]=i;
scanf("%d",&testcase);
while(testcase--)
{
scanf("%d",&n);
mul=1,sq=(int)sqrt(n*1.00),t=0;
for(i=0;i<p;i++)
{
t=0;
if(prime[i]>sq)break;
while(n%prime[i]==0)
{
n/=prime[i];t++;
}
mul*=(t*2+1);
}
if(n>1)mul*=3;
printf("Scenario #%d:\n",s++);
printf("%d\n\n",(mul+1)/2);
}
return 0;
}
本文深入探讨了迪奥里安方程的理论基础,介绍了求解特定形式方程的算法,并附带了C语言代码实现。通过实例展示了如何高效计算给定n值下方程的解的数量。
448

被折叠的 条评论
为什么被折叠?



