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

T106021 【模板】乘法逆元(快速幂)

时间:2019-10-29 21:37:14      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:long   exgcd   main   turn   target   ret   模板   using   return   

技术图片

题目地址


注意点:

  • 使用exgcd求乘法逆元需额外进行(相对)较多操作,建议使用快速幂求乘法逆元.

#include<cstdio>
#include<iostream>
#define ll long long
using namespace std;
int n,p;
int poww(int a,int b){
	ll ans=1,tmp=a;
	while(b){
		if(b&1){
			ans*=tmp;
			ans%=p;
		}
		tmp=tmp*tmp;
		tmp%=p;
		b>>=1;
	}
	return ans;
}
int main(){
	scanf("%d%d",&n,&p);
	for(int i=1;i<=n;i++){
		ll ans=poww(i,p-2);
		cout<<ans<<endl;
	}
	return 0;
} 

T106021 【模板】乘法逆元(快速幂)

标签:long   exgcd   main   turn   target   ret   模板   using   return   

原文地址:https://www.cnblogs.com/zbsy-wwx/p/11761399.html

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