【BZOJ1008】越狱
很少刷到这么水的题了...
答案就是总方案数-无法越狱的方案数。
#include <cstdio> typedef long long LL; using namespace std; const int mod=100003; LL Pow(LL a,LL b) { LL res=1; a%=mod; while (b) { if (b&1) res=(res*a)%mod; a=(a*a)%mod; b>>=1; } return res; } LL n,m; int main() { scanf("%lld%lld",&m,&n); printf("%lld\n",(Pow(m,n)-(m*Pow(m-1,n-1))%mod+mod)%mod); return 0; }