快速幂模板~
ll qpow(ll x,ll n)
{ll ans=1;while(n){if(n&1)ans*=x%mod;x*=x%mod;n>>=1;}return ans%mod;
}
?
總結(jié)
- 上一篇: hdu-2204(容斥原理)
- 下一篇: 为什么需要动态内存分配?