首页 > 其他 > 详细

【HNOI2008】越狱

时间:2019-08-31 01:08:17      阅读:92      评论:0      收藏:0      [点我收藏+]

题面

https://www.luogu.org/problem/P3197

题解

以一道水题作为“数学”部分的开端。

补集转换$+$快速幂

#include<stack>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define LL long long
#define mod 100003
#define ri register int

using namespace std;

LL pow(LL a,LL b) {
  a%=mod;LL ret=1;
  for (;b;b>>=1,a=(a*a)%mod) if (b&1) ret=(ret*a)%mod;
  return ret;
}

int main() {
  LL n,m;
  scanf("%lld %lld",&m,&n);
  printf("%lld\n",(pow(m,n)-(m*pow(m-1,n-1))%mod+mod)%mod);
}

 

【HNOI2008】越狱

原文:https://www.cnblogs.com/shxnb666/p/11437686.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!