传送门
有一个1*n的矩阵 固定第一个数为1 其他填正整数 且相邻数的差不能超过1 求方案数%1e9+7的结果
Input
一个数n 表示1*n的矩阵(n<=10^6)
Output
一个数 表示方案数%1e9+7的结果
Input示例
3
Output示例
5
解题思路:
这是一个默慈金数的题目,那么什么叫默慈金数呢。
默慈金数是在数学中,一个给定的数n的默慈金数是“在一个圆上的n个点间,画出彼此不相交的弦的全部方法的总数”。——摘自百度百科
默慈金数的实例表示:像例如在一个“网格”上,若限定“每步只能向右移动一格(可以向右上、右下横向向右),并禁止移动到
本题与默慈金数的模型的不同点是,我们要从
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <map>
using namespace std;
typedef long long LL;
const LL MOD = 1e9+7;
const int MAXN = 1e6+5;
LL ans[MAXN], M[MAXN];
void Exgcd(LL a, LL b, LL &x, LL &y)///求逆元
{
if(b == 0)
{
x = 1;
y = 0;
return;
}
LL x1, y1;
Exgcd(b, a%b, x1, y1);
x = y1;
y = x1-(a/b)*y1;
}
void get_Motzkin()///得到默慈金数
{
LL x, y;
M[1] = 1, M[2] = 2;
for(int i=3; i<MAXN; i++)
{
Exgcd(i+2, MOD, x, y);
x = (x%MOD+MOD)%MOD;
M[i] = ( ((2*i+1)*M[i-1])%MOD + ((3*i-3)*M[i-2])%MOD ) * x;
M[i] = (M[i]%MOD+MOD)%MOD;
}
}
void Init()
{
get_Motzkin();
ans[1] = 1, ans[2] = 2;
for(int i=3; i<MAXN; i++)
{
ans[i] = (3*ans[i-1]-M[i-2]);
ans[i] = (ans[i]%MOD+MOD)%MOD;
}
}
int main()
{
Init();
int n;
while(~scanf("%d",&n))
{
printf("%I64d\n",ans[n]);
}
return 0;
}
原文:http://blog.csdn.net/qingshui23/article/details/52068031