T106021 模板乘法逆元(快速幂)
Posted zbsy-wwx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了T106021 模板乘法逆元(快速幂)相关的知识,希望对你有一定的参考价值。
注意点:
- 使用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 模板乘法逆元(快速幂)的主要内容,如果未能解决你的问题,请参考以下文章