标签:模板 class rev math return http mat 快速 ==
求 a乘 b 对 p取模的值。
static long quick_multi(long a,long b,long m){ long res=0; while(b>0){ if((b&1)==1) res=(res+a)%m; b>>=1; a=(a+a)%m; } return res%m; }
标签:模板 class rev math return http mat 快速 ==
原文地址:https://www.cnblogs.com/qdu-lkc/p/12208827.html