標籤:des style blog io os ar for 2014 div
Pseudoprime numbersTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 6544Accepted: 2648Description
Fermat‘s theorem states that for any prime number p and for any integer a > 1, ap = a (mod p). That is, if we raise a to the pth power and divide by p, the remainder is a. Some (but not very many) non-prime values of p, known as base-a pseudoprimes, have this property for some a. (And some, known as Carmichael Numbers, are base-a pseudoprimes for all a.)
Given 2 < p ≤ 1000000000 and 1 < a < p, determine whether or not p is a base-a pseudoprime.
Input
Input contains several test cases followed by a line containing "0 0". Each test case consists of a line containing p and a.
Output
For each test case, output "yes" if p is a base-a pseudoprime; otherwise output "no".
Sample Input
3 2
10 3
341 2
341 3
1105 2
1105 3
0 0
Sample Output
no
no
yes
no
yes
yes
Source
Waterloo Local Contest, 2007.9.23
題目大意:費馬定理:a^p = a(mod p) (a為大於1的整數,p為素數),一些非素數p,同樣也符合上邊的
定理,這樣的p被稱作基於a的偽素數,給你p和a,判斷p是否是基於a的偽素數
思路:很簡單的快速冪取餘+素性判斷
如果p為素數,則直接輸出no
如果p不為素數,則進行快速冪取餘判斷是否為偽素數,若是,輸出yes,不是,輸出no
#include<stdio.h>#include<math.h>__int64 QuickPow(__int64 a,__int64 p){ __int64 r = 1,base = a; __int64 m = p; while(p!=0) { if(p&1) r = r * base % m; base = base * base % m; p >>= 1; } return r;}bool IsPrime(__int64 p){ for(__int64 i = 2; i <= sqrt(p) + 1; i++) { if(p % i == 0) return false; } return true;}int main(){ __int64 a,p; while(~scanf("%I64d %I64d",&p,&a) && (p!=0 || a!=0)) { if(IsPrime(p)) printf("no\n"); else { if(QuickPow(a,p) == a) printf("yes\n"); else printf("no\n"); } } return 0;}
POJ3641_Pseudoprime numbers【快速冪】【偽素數】