码迷,mamicode.com
首页 > 其他好文 > 详细

bzoj 1008: [HNOI2008]越狱

时间:2017-08-18 23:48:26      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:bsp   names   bzoj   答案   pac   using   hnoi   typedef   algo   

分析:

很容易发现答案就是总共的方案数减去相邻的数不相等的方案数。m^n-m*(m-1)^(n-1)。

注意:(a-b) mod n = ((a mod n)-(b mod n)+n) mod n

#include<iostream>
#include<algorithm>
using namespace std;
typedef long long ll;
const ll mod=100003;
ll get_sum(ll a,ll b){
    ll ret=1;
    a%=mod;
    while(b>0){
        if(b&1){
            ret*=a%mod;
            ret%=mod;
        }
        a*=a%mod;
        a%=mod;
        b>>=1;
    }
    return ret;
}
int main(){
    ll m,n;
    cin>>m>>n;
    cout<<((get_sum(m,n)-(m%mod)*get_sum(m-1,n-1))%mod+mod)%mod;
    return 0;
}

 

bzoj 1008: [HNOI2008]越狱

标签:bsp   names   bzoj   答案   pac   using   hnoi   typedef   algo   

原文地址:http://www.cnblogs.com/Dream-Runner/p/7392494.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!