A13484 | TediousLee
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Lee tried so hard to make a good div.2 D problem to balance his recent contest, but it still doesn't feel good at all. Lee invented it so tediously slow that he managed to develop a phobia about div.2 D problem setting instead. And now he is hiding behind the bushes...
Let's define a Rooted Dead Bush (RDB) of level $n$ as a rooted tree constructed as described below.
A rooted dead bush of level $1$ is a single vertex. To construct an RDB of level $i$ we, at first, construct an RDB of level $i-1$ , then for each vertex $u$ :
- if $u$ has no children then we will add a single child to it;
- if $u$ has one child then we will add two children to it;
- if $u$ has more than one child, then we will skip it.
Rooted Dead Bushes of level $1$ , $2$ and $3$ . Let's define a claw as a rooted tree with four vertices: one root vertex (called also as center) with three children. It looks like a claw:
The center of the claw is the vertex with label $1$ . Lee has a Rooted Dead Bush of level $n$ . Initially, all vertices of his RDB are green.
In one move, he can choose a claw in his RDB, if all vertices in the claw are green and all vertices of the claw are children of its center, then he colors the claw's vertices in yellow.
He'd like to know the maximum number of yellow vertices he can achieve. Since the answer might be very large, print it modulo $10^9+7$ .
Let's define a Rooted Dead Bush (RDB) of level $n$ as a rooted tree constructed as described below.
A rooted dead bush of level $1$ is a single vertex. To construct an RDB of level $i$ we, at first, construct an RDB of level $i-1$ , then for each vertex $u$ :
- if $u$ has no children then we will add a single child to it;
- if $u$ has one child then we will add two children to it;
- if $u$ has more than one child, then we will skip it.
Rooted Dead Bushes of level $1$ , $2$ and $3$ . Let's define a claw as a rooted tree with four vertices: one root vertex (called also as center) with three children. It looks like a claw:
The center of the claw is the vertex with label $1$ . Lee has a Rooted Dead Bush of level $n$ . Initially, all vertices of his RDB are green.
In one move, he can choose a claw in his RDB, if all vertices in the claw are green and all vertices of the claw are children of its center, then he colors the claw's vertices in yellow.
He'd like to know the maximum number of yellow vertices he can achieve. Since the answer might be very large, print it modulo $10^9+7$ .
输入格式
The first line contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
Next $t$ lines contain test cases — one per line.
The first line of each test case contains one integer $n$ ( $1 \le n \le 2 \cdot 10^6$ ) — the level of Lee's RDB.
Next $t$ lines contain test cases — one per line.
The first line of each test case contains one integer $n$ ( $1 \le n \le 2 \cdot 10^6$ ) — the level of Lee's RDB.
输出格式
For each test case, print a single integer — the maximum number of yellow vertices Lee can make modulo $10^9 + 7$ .
输入输出样例
输入 #1
7 1 2 3 4 5 100 2000000
输出 #1
0 0 4 4 12 990998587 804665184
It's easy to see that the answer for RDB of level $1$ or $2$ is $0$ .
The answer for RDB of level $3$ is $4$ since there is only one claw we can choose: $\{1, 2, 3, 4\}$ .
The answer for RDB of level $4$ is $4$ since we can choose either single claw $\{1, 3, 2, 4\}$ or single claw $\{2, 7, 5, 6\}$ . There are no other claws in the RDB of level $4$ (for example, we can't choose $\{2, 1, 7, 6\}$ , since $1$ is not a child of center vertex $2$ ).
Rooted Dead Bush of level 4.
The answer for RDB of level $3$ is $4$ since there is only one claw we can choose: $\{1, 2, 3, 4\}$ .
The answer for RDB of level $4$ is $4$ since we can choose either single claw $\{1, 3, 2, 4\}$ or single claw $\{2, 7, 5, 6\}$ . There are no other claws in the RDB of level $4$ (for example, we can't choose $\{2, 1, 7, 6\}$ , since $1$ is not a child of center vertex $2$ ).
Rooted Dead Bush of level 4.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted