A14112 | Fib-tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let $F_k$ denote the $k$ -th term of Fibonacci sequence, defined as below:
- $F_0 = F_1 = 1$
- for any integer $n \geq 0$ , $F_{n+2} = F_{n+1} + F_n$
You are given a tree with $n$ vertices. Recall that a tree is a connected undirected graph without cycles.
We call a tree a Fib-tree, if its number of vertices equals $F_k$ for some $k$ , and at least one of the following conditions holds:
- The tree consists of only $1$ vertex;
- You can divide it into two Fib-trees by removing some edge of the tree.
Determine whether the given tree is a Fib-tree or not.
- $F_0 = F_1 = 1$
- for any integer $n \geq 0$ , $F_{n+2} = F_{n+1} + F_n$
You are given a tree with $n$ vertices. Recall that a tree is a connected undirected graph without cycles.
We call a tree a Fib-tree, if its number of vertices equals $F_k$ for some $k$ , and at least one of the following conditions holds:
- The tree consists of only $1$ vertex;
- You can divide it into two Fib-trees by removing some edge of the tree.
Determine whether the given tree is a Fib-tree or not.
输入格式
The first line of the input contains a single integer $n$ ( $1 \leq n \leq 2 \cdot 10^5$ ) — the number of vertices in the tree.
Then $n-1$ lines follow, each of which contains two integers $u$ and $v$ ( $1\leq u,v \leq n$ , $u \neq v$ ), representing an edge between vertices $u$ and $v$ . It's guaranteed that given edges form a tree.
Then $n-1$ lines follow, each of which contains two integers $u$ and $v$ ( $1\leq u,v \leq n$ , $u \neq v$ ), representing an edge between vertices $u$ and $v$ . It's guaranteed that given edges form a tree.
输出格式
Print "YES" if the given tree is a Fib-tree, or "NO" otherwise.
You can print your answer in any case. For example, if the answer is "YES", then the output "Yes" or "yeS" will also be considered as correct answer.
You can print your answer in any case. For example, if the answer is "YES", then the output "Yes" or "yeS" will also be considered as correct answer.
输入输出样例
输入 #1
3 1 2 2 3
输出 #1
YES
输入 #2
5 1 2 1 3 1 4 1 5
输出 #2
NO
输入 #3
5 1 3 1 2 4 5 3 4
输出 #3
YES
In the first sample, we can cut the edge $(1, 2)$ , and the tree will be split into $2$ trees of sizes $1$ and $2$ correspondently. Any tree of size $2$ is a Fib-tree, as it can be split into $2$ trees of size $1$ .
In the second sample, no matter what edge we cut, the tree will be split into $2$ trees of sizes $1$ and $4$ . As $4$ isn't $F_k$ for any $k$ , it's not Fib-tree.
In the third sample, here is one possible order of cutting the edges so that all the trees in the process are Fib-trees: $(1, 3), (1, 2), (4, 5), (3, 4)$ .
In the second sample, no matter what edge we cut, the tree will be split into $2$ trees of sizes $1$ and $4$ . As $4$ isn't $F_k$ for any $k$ , it's not Fib-tree.
In the third sample, here is one possible order of cutting the edges so that all the trees in the process are Fib-trees: $(1, 3), (1, 2), (4, 5), (3, 4)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted