标签:
首先我来介绍一下什么是自然数幂和:
类似上述式子的就是自然数幂和了,那么具体怎么求呢,这就是今天的重点了:
首先求
根据牛顿二项式展开定理:
所以:
那么我们现在消去了最高次幂的项
…
左边加左边,右边加右边,得到:
根据上式我们得到幂指数是
也可以写为:
现在 我们将
那么我们现在得到一个递推式:
当
我们先对
求和得:
那么
又因为:
所以:
模板:
/**
2016 - 08 - 06 上午
Author: ITAK
Motto:
今日的我要超越昨日的我,明日的我要胜过今日的我,
以创作出更好的代码为目标,不断地超越自己。
**/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
const int INF = 1e9+5;
const int MAXN = 2e3+5;
const LL MOD = 1e9+7;
const double eps = 1e-7;
const double PI = acos(-1);
using namespace std;
LL c[MAXN][MAXN];
void Get_Fac()
{
for(int i=0; i<MAXN; i++)
c[i][0] = 1;
for(int i=1; i<MAXN; i++)
for(int j=1; j<=i; j++)
c[i][j] = (c[i-1][j]+c[i-1][j-1])%MOD;
}
LL ans[MAXN];
LL Solve(LL n, LL k)///1^k+2^k+...+n^k
{
Get_Fac();
if(ans[k] != -1)
return ans[k];
if(k == 1)
return (n+1)*n/2;
LL tmp = 1;
for(int i=0; i<=k; i++)
tmp = tmp*(n+1);
tmp = tmp - (n+1);
LL sum = 0;
for(int i=1; i<k; i++)
sum += c[k+1][i+1]*Solve(n,k-i);
ans[k] = (tmp-sum)/(k+1);
return ans[k];
}
int main()
{
LL n, k;
while(cin>>n>>k)
{
memset(ans, -1, sizeof(ans));
cout<<Solve(n,k)<<endl;
}
return 0;
}
标签:
原文地址:http://blog.csdn.net/qingshui23/article/details/52135079