A16144 | Fibonaccharsis
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ntarsis has received two integers $n$ and $k$ for his birthday. He wonders how many fibonacci-like sequences of length $k$ can be formed with $n$ as the $k$ -th element of the sequence.
A sequence of non-decreasing non-negative integers is considered fibonacci-like if $f_i = f_{i-1} + f_{i-2}$ for all $i > 2$ , where $f_i$ denotes the $i$ -th element in the sequence. Note that $f_1$ and $f_2$ can be arbitrary.
For example, sequences such as $[4,5,9,14]$ and $[0,1,1]$ are considered fibonacci-like sequences, while $[0,0,0,1,1]$ , $[1, 2, 1, 3]$ , and $[-1,-1,-2]$ are not: the first two do not always satisfy $f_i = f_{i-1} + f_{i-2}$ , the latter does not satisfy that the elements are non-negative.
Impress Ntarsis by helping him with this task.
A sequence of non-decreasing non-negative integers is considered fibonacci-like if $f_i = f_{i-1} + f_{i-2}$ for all $i > 2$ , where $f_i$ denotes the $i$ -th element in the sequence. Note that $f_1$ and $f_2$ can be arbitrary.
For example, sequences such as $[4,5,9,14]$ and $[0,1,1]$ are considered fibonacci-like sequences, while $[0,0,0,1,1]$ , $[1, 2, 1, 3]$ , and $[-1,-1,-2]$ are not: the first two do not always satisfy $f_i = f_{i-1} + f_{i-2}$ , the latter does not satisfy that the elements are non-negative.
Impress Ntarsis by helping him with this task.
输入格式
The first line contains an integer $t$ ( $1 \leq t \leq 2 \cdot 10^5$ ), the number of test cases. The description of each test case is as follows.
Each test case contains two integers, $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5$ , $3 \leq k \leq 10^9$ ).
It is guaranteed the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
Each test case contains two integers, $n$ and $k$ ( $1 \leq n \leq 2 \cdot 10^5$ , $3 \leq k \leq 10^9$ ).
It is guaranteed the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case output an integer, the number of fibonacci-like sequences of length $k$ such that the $k$ -th element in the sequence is $n$ . That is, output the number of sequences $f$ of length $k$ so $f$ is a fibonacci-like sequence and $f_k = n$ . It can be shown this number is finite.
输入输出样例
输入 #1
8 22 4 3 9 55 11 42069 6 69420 4 69 1434 1 3 1 4
输出 #1
4 0 1 1052 11571 0 1 0
There are $4$ valid fibonacci-like sequences for $n = 22$ , $k = 4$ :
- $[6,8,14,22]$ ,
- $[4,9,13,22]$ ,
- $[2,10,12,22]$ ,
- $[0,11,11,22]$ .
For $n = 3$ , $k = 9$ , it can be shown that there are no fibonacci-like sequences satisfying the given conditions.
For $n = 55$ , $k = 11$ , $[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]$ is the only fibonacci-like sequence.
- $[6,8,14,22]$ ,
- $[4,9,13,22]$ ,
- $[2,10,12,22]$ ,
- $[0,11,11,22]$ .
For $n = 3$ , $k = 9$ , it can be shown that there are no fibonacci-like sequences satisfying the given conditions.
For $n = 55$ , $k = 11$ , $[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55]$ is the only fibonacci-like sequence.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted