码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3641

时间:2014-09-06 09:45:02      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   for   div   sp   log   on   amp   

主要是为了试一下MILLER-RABIN的方法

#include <iostream>
#include <time.h>
#include <cstdio>
#include <stdlib.h>
#define LL __int64
using namespace std;

const LL TIME=1000;

LL random(LL n){
	return (LL)((double)rand()/RAND_MAX*n+0.5);
}

LL quick(LL a,LL k,LL m){
	LL ans=1;
	while(k){
		if(k&1){
			ans=ans*a%m;
		}
		k>>=1;
		a=a*a%m;
	}
	return ans%m;
}

bool Miller_Rabin(LL p){
	for(LL i=1;i<=TIME;i++){
		LL a=random(p-2)+1;
		if(quick(a,p-1,p)!=1)
		return false;
	}
	return true;
}

int main(){
	LL p,a;
	srand(time(0));
	while(scanf("%I64d%I64d",&p,&a),p||a){
	//	cout<<p<<a<<endl;
		if(Miller_Rabin(p)){
			printf("no\n");
			continue;
		}
		bool flag=true;
		LL ans=quick(a,p,p);
		if(ans==a)printf("yes\n");
		else printf("no\n");
	}
	return 0;
}

  

POJ 3641

标签:blog   os   io   for   div   sp   log   on   amp   

原文地址:http://www.cnblogs.com/jie-dcai/p/3959140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!