Description
监狱有连续编号为1…N的N个房间,每个房间关押一个犯人,有M种宗教,每个犯人可能信仰其中一种。如果相邻房间的犯人的宗教相同,就可能发生越狱,求有多少种状态可能发生越狱
Input
输入两个整数M,N.1<=M<=10^8,1<=N<=10^12
Output
可能越狱的状态数,模100003取余
Sample Input
2 3
Sample Output
6
HINT
6种状态为(000)(001)(011)(100)(110)(111)
Source
mn−m∗(m−1)n−1
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#define LL long long
#define P 100003
using namespace std;
LL n,m,ans;
LL Pow(LL a,LL b)
{
a%=P;LL ret=1;
for (;b;b>>=1,a=a*a%P) if (b&1) ret*=a,ret%=P;
return ret%P;
}
int main()
{
cin>>m>>n;
ans=Pow(m,n)+P-m*Pow(m-1,n-1)%P;ans=(ans+P)%P;
cout<<ans<<endl;
}