CodeForces - 392C Yet Another Number Sequence (二项式展开+矩阵加速)

Posted konjak魔芋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了 CodeForces - 392C Yet Another Number Sequence (二项式展开+矩阵加速)相关的知识,希望对你有一定的参考价值。

Description

Everyone knows what the Fibonacci sequence is. This sequence can be defined by the recurrence relation:

F1 = 1, F2 = 2, Fi = Fi - 1 + Fi - 2 (i > 2).

We‘ll define a new number sequence Ai(k) by the formula:

Ai(k) = Fi × ik (i ≥ 1).

In this problem, your task is to calculate the following sum: A1(k) + A2(k) + ... + An(k). The answer can be very large, so print it modulo1000000007 (109 + 7).

Input

The first line contains two space-separated integers nk (1 ≤ n ≤ 1017; 1 ≤ k ≤ 40).

Output

Print a single integer — the sum of the first n elements of the sequence Ai(k) modulo 1000000007 (109 + 7).

Sample Input

Input
1 1
Output
1
Input
4 1
Output
34
Input
5 2
Output
316
Input
7 4
Output
73825
 

 

【分析】

  哈哈照着上一题的方法我就弄出来了~~
  应该是形如 x^k的形式,x很大,k较小的时候可以用二项式定理展开,求递推式然后矩阵加速。。
  技术分享
技术分享

 

以上是关于 CodeForces - 392C Yet Another Number Sequence (二项式展开+矩阵加速)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 903 G. Yet Another Maxflow Problem

Educational Codeforces Round 80. B - Yet Another Meme Problem

CodeForces - 1000D Yet Another Problem On a Subsequence

CodeForces 863D Yet Another Array Queries Problem 暴力

Codeforces 903G Yet Another Maxflow Problem - 线段树

codeforces div3 19/10/23A.Yet Another Dividing into Teams