CF1117D.Magic Gems

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Reziba has many magic gems. Each magic gem can be split into MM normal gems. The amount of space each magic (and normal) gem takes is 11 unit. A normal gem cannot be split.

Reziba wants to choose a set of magic gems and split some of them, so the total space occupied by the resulting set of gems is NN units. If a magic gem is chosen and split, it takes MM units of space (since it is split into MM gems); if a magic gem is not split, it takes 11 unit.

How many different configurations of the resulting set of gems can Reziba have, such that the total amount of space taken is NN units? Print the answer modulo 10000000071000000007 ( 109+710^9+7 ). Two configurations are considered different if the number of magic gems Reziba takes to form them differs, or the indices of gems Reziba has to split differ.

输入格式

The input contains a single line consisting of 22 integers NN and MM ( 1N10181 \le N \le 10^{18} , 2M1002 \le M \le 100 ).

输出格式

Print one integer, the total number of configurations of the resulting set of gems, given that the total amount of space taken is NN units. Print the answer modulo 10000000071000000007 ( 109+710^9+7 ).

输入输出样例

  • 输入#1

    4 2
    

    输出#1

    5
    
  • 输入#2

    3 2
    

    输出#2

    3
    

说明/提示

In the first example each magic gem can split into 22 normal gems, and we know that the total amount of gems are 44 .

Let 11 denote a magic gem, and 00 denote a normal gem.

The total configurations you can have is:

  • 11111 1 1 1 (None of the gems split);
  • 00110 0 1 1 (First magic gem splits into 22 normal gems);
  • 10011 0 0 1 (Second magic gem splits into 22 normal gems);
  • 11001 1 0 0 (Third magic gem splits into 22 normal gems);
  • 00000 0 0 0 (First and second magic gems split into total 44 normal gems).

Hence, answer is 55 .

首页