大一上学完数分上后终于可以搞懂指数型母函数了。。
需要一点关于泰勒级数的高数知识
题目在此:
4 1 4 20 11 3 14 24 6 0
Case 1: 2 Case 2: 72 Case 3: 32 Case 4: 0 Case 1: 56 Case 2: 72 Case 3: 56
接下来 怎么解决 用快速幂解决2^N 的计算。。
一定要非递归的 递归的会超时
代码如下:
#include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <ctime> #include <algorithm> #include <iostream> #include <sstream> #include <string> #define oo 0x13131313 using namespace std; long long N; int ans; int solve(int m,long long n,int k) { int b = 1; while (n > 0) { if (n & 1) b = (b*m)%k; n = n >> 1 ; m = (m*m)%k; } return b; } void init() { freopen("a.in","r",stdin); freopen("a.out","w",stdout); } int main() { //init(); int T; while(scanf("%d",&T)!=EOF&&T) { for(int Case=1;Case<=T;Case++) { scanf("%I64d",&N); ans=solve(2,N-1,100); printf("Case %d: %d\n",Case,ans*(ans+1)%100); } printf("\n"); } return 0; }