首页 > 代码库 > [bzoj]1008: [HNOI2008]越狱
[bzoj]1008: [HNOI2008]越狱
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)
1 #define LL long long 2 3 #include<iostream> 4 using namespace std; 5 6 const LL mod=100003; 7 LL m,n; 8 9 LL modexp(LL a,LL b)10 {11 LL ret=1,tmp=a;12 while(b)13 {14 if(b&1) ret=(ret*tmp)%mod;15 tmp=(tmp*tmp)%mod;16 b>>=1;17 }18 return ret;19 }20 21 int main()22 {23 cin>>m>>n;24 cout<<(modexp(m,n)-(modexp(m-1,n-1)*m)%mod+mod)%mod;25 return 0;26 }
[bzoj]1008: [HNOI2008]越狱
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。