A10129 | Sandy and Nuts
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Rooted tree is a connected graph without any simple cycles with one vertex selected as a root. In this problem the vertex number $1$ will always serve as a root.
Lowest common ancestor of two vertices $u$ and $v$ is the farthest from the root vertex that lies on both the path from $u$ to the root and on path from $v$ to the root. We will denote it as $LCA(u,v)$ .
Sandy had a rooted tree consisting of $n$ vertices that she used to store her nuts. Unfortunately, the underwater storm broke her tree and she doesn't remember all it's edges. She only managed to restore $m$ edges of the initial tree and $q$ triples $a_{i}$ , $b_{i}$ and $c_{i}$ , for which she supposes $LCA(a_{i},b_{i})=c_{i}$ .
Help Sandy count the number of trees of size $n$ with vertex $1$ as a root, that match all the information she remembered. If she made a mess and there are no such trees then print $0$ . Two rooted trees are considered to be distinct if there exists an edge that occur in one of them and doesn't occur in the other one.
Lowest common ancestor of two vertices $u$ and $v$ is the farthest from the root vertex that lies on both the path from $u$ to the root and on path from $v$ to the root. We will denote it as $LCA(u,v)$ .
Sandy had a rooted tree consisting of $n$ vertices that she used to store her nuts. Unfortunately, the underwater storm broke her tree and she doesn't remember all it's edges. She only managed to restore $m$ edges of the initial tree and $q$ triples $a_{i}$ , $b_{i}$ and $c_{i}$ , for which she supposes $LCA(a_{i},b_{i})=c_{i}$ .
Help Sandy count the number of trees of size $n$ with vertex $1$ as a root, that match all the information she remembered. If she made a mess and there are no such trees then print $0$ . Two rooted trees are considered to be distinct if there exists an edge that occur in one of them and doesn't occur in the other one.
输入格式
The first line of the input contains three integers $n$ , $m$ and $q$ ( $1<=n<=13,0<=m<n,0<=q<=100$ ) — the number of vertices, the number of edges and $LCA$ triples remembered by Sandy respectively.
Each of the next $m$ lines contains two integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n,u_{i}≠v_{i}$ ) — the numbers of vertices connected by the $i$ -th edge. It's guaranteed that this set of edges is a subset of edges of some tree.
The last $q$ lines contain the triplets of numbers $a_{i}$ , $b_{i}$ , $c_{i}$ ( $1<=a_{i},b_{i},c_{i}<=n)$ . Each of these triples define $LCA(a_{i},b_{i})=c_{i}$ . It's not guaranteed that there exists a tree that satisfy all the given $LCA$ conditions.
Each of the next $m$ lines contains two integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n,u_{i}≠v_{i}$ ) — the numbers of vertices connected by the $i$ -th edge. It's guaranteed that this set of edges is a subset of edges of some tree.
The last $q$ lines contain the triplets of numbers $a_{i}$ , $b_{i}$ , $c_{i}$ ( $1<=a_{i},b_{i},c_{i}<=n)$ . Each of these triples define $LCA(a_{i},b_{i})=c_{i}$ . It's not guaranteed that there exists a tree that satisfy all the given $LCA$ conditions.
输出格式
Print a single integer — the number of trees of size $n$ that satisfy all the conditions.
输入输出样例
输入 #1
4 0 0
输出 #1
16
输入 #2
4 0 1 3 4 2
输出 #2
1
输入 #3
3 1 0 1 2
输出 #3
2
输入 #4
3 0 2 2 3 2 2 3 1
输出 #4
0
输入 #5
4 1 2 1 2 2 2 2 3 4 2
输出 #5
1
In the second sample correct answer looks like this:
In the third sample there are two possible trees:
 In the fourth sample the answer is $0$ because the information about $LCA$ is inconsistent.
In the third sample there are two possible trees:
 In the fourth sample the answer is $0$ because the information about $LCA$ is inconsistent.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted