您的位置:首页 > 其它

Uva 10006 Carmichael Numbers 快速幂

2013-09-29 17:11 417 查看
An important topic nowadays in computer science is cryptography. Some people even think that cryptography is the only important field in computer science, and that life would not matter at all without cryptography.
Alvaro is one of such persons, and is designing a set of cryptographic procedures for cooking paella. Some of the cryptographic algorithms he is implementing make use of big prime numbers. However, checking if a big number is prime is not so easy. An exhaustive
approach can require the division of the number by all the prime numbers smaller or equal than its square root. For big numbers, the amount of time and storage needed for such operations would certainly ruin the paella.

题意:给定这样的一个定义:给你一个数n,对于任意的x(1< x < n),都有x^n ≡x(mod n)。那么就称这个数Carmichael number。如果不是,则输出”is normal“。

题解:对于一个数n的判断次数就是2~n-1。如果不处理幂运算,那么肯定是会超时得。我们可以采用快速幂的算法。要注意在进行快速幂之前先判断一次n是否为素数,如果是素数那么就is normal 并且continue了。不进行这样的操作很有可能超时。

#include<iostream>
#include<cstring>
#include<cstdlib>
#include<cstdio>
#include<queue>
#include<cmath>
using namespace std;
long long int mod_pow(long long int x,long long int n,long long int mod)
{
long long int ret=1;
while(n>0)
{
if(n&1)
ret=ret*x%mod;
x=x*x%mod;
n>>=1;
}
return ret;
}
bool prime(int x)
{
for(int i=2;i<=sqrt(x);i++)
{
if(x%i==0)
return false;
}
return true;
}

int main()
{
int n;
while(~scanf("%d",&n))
{
if(n==0)
break;
bool flag=true;
if(prime(n))
{
printf("%d is normal.\n",n);
continue;
}
for(int i=2;i<n;i++)
{
if(mod_pow(i,n,n)!=i)
{
flag=false;
break;
}
}
if(!prime(n)&&flag)
printf("The number %d is a Carmichael number.\n",n);
else
printf("%d is normal.\n",n);

}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: