A题题解
A题
A题描述
White Cloud is exercising in the playground.
White Cloud can walk 1 meters or run k meters per second.
Since White Cloud is tired,it can’t run for two or more continuous seconds.
White Cloud will move L to R meters. It wants to know how many different ways there are to achieve its goal.
Two ways are different if and only if they move different meters or spend different seconds or in one second, one of them walks and the other runs.
A输入描述
The first line of input contains 2 integers Q and k.Q is the number of queries.(Q<=100000,2<=k<=100000)
For the next Q lines,each line contains two integers L and R.(1<=L<=R<=100000)
A输出描述
For each query,print a line which contains an integer,denoting the answer of the query modulo 1000000007.
A输入
1 | 3 3 |
A输出
1 | 2 |
A题分析
看完题目第一反应是用深度优先搜索找出所有的情况并给出答案,将写出的代码提交后发现超时了。
第二个想法就是找规律,利用最初写好的深搜代码,得到多组数据,再对这些数据找规律后发现f(n)=f(n-1)+f(n-k-1)其中K为跑步的速度,n是白云到第n个点的方法。
AC代码A
1 |
|