【满k叉树】Perfect Tree
题目描述
•Each node is either a leaf node or having exactly k direct offsprings.
•All leaf nodes have the same distance to the root (i.e., all leaf nodes are of the same depth).
Now you are given an unrooted tree, and you should answer these questions:
•Is it possible to assign it a root, so that the tree becomes k-perfect for some positive integer k?
•If possible, what is the minimal k?
输入
Each input contains multiple test cases.
The first line contains a single positive integer T, indicating the number of test cases.
For each test case, its first line contains a positive integer n, describing the number of tree nodes. Each of the next n − 1 lines contains two space-separated integers u and v, which means there exists an edge between node u and v on the tree.
It is guaranteed each test case gives a valid unrooted tree, and the nodes are numbered with consecutive integers from 1 to n.
The sum of n in each input will not exceed 1e6.
输出
For each test case, output a single integer in a line:
•If the answer to the first question is "No", output −1.
•Otherwise, output the minimal k.
样例输入
2
7
1 4
4 5
3 1
2 3
7 3
4 6
7
1 4
1 5
1 2
5 3
5 6
5 7
样例输出
2
-1
【题意】
给出n个点,n-1条边的无根树,请问这颗无根树是否为满k叉树,如果是满k叉树,请输出k。否则输出"-1".
【感受】
太多细节了,真的太多太多了,WA29次.......
最后还是看了别人的代码才知道自己错哪里了。
根据树的特点观察得到:
度的情况有以下情况:
度数为1 :叶子节点
度数为k :根节点 (同时只有1个)
度数为k+1 :其他节点。
特例:
1、菊花图,就是一个节点连着多个叶子节点
2、单链
3、满K叉树
4、否则都不满足。
#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
const int N = 2e6+;
const int inf = 0x3f3f3f3f ; /*——————————————————Add_edge()————————————————*/ typedef struct Edge{
int to , next ;
}Edge ;
Edge e[N<<];
int head[N] , cnt ; void Add_edge( int u , int v ){
e[cnt] = Edge{ v ,head[u] };
head[u] = cnt ++ ;
} /*——————If you ask me how much i love you ———————*/ int vis[N],du[N],dep[N],Num[N],n;
int p[N];
void Init(){
for(int i=;i<=n;i++){
head[i] = - ;
Num[i] = dep[i] = p[i] = vis[i] = du[i] = ;
}
cnt = ;
}
int main()
{
int T;
scanf("%d",&T);
while(T--){ scanf("%d",&n);
Init(); for( int i = ,u,v ; i < n ; i++ ){
scanf("%d%d",&u,&v);
Add_edge( u , v );
Add_edge( v , u );
du[u] ++ ; du[v] ++ ;
}
//直接判断节点个数<=3时都为1.
if( n <= ){
printf("1\n");
continue ;
} bool f = true; int tot = ;
for(int u = ; u <= n ; u ++ ){
if( vis[du[u]] == )
p[tot++] = du[u] ;
vis[du[u]] ++ ;
} sort( p , p + tot );
int k = p[] ; //单链情况
if( tot == && vis[] == ){
printf("1\n"); continue ;
}
//具有一层的情况
else if( tot == && vis[] == n - ){
printf("%d\n",p[]) ; continue ;
}
// 度数为k的只有一个,而且第三种度的个数一定是K+1
else if( tot == ){
if( vis[p[]] != || p[] != p[] - ){
f = false ;
}else{
int root = , Max_dep = ;
for(int u = ; u <= n ; u++ ){
if( du[u] == p[] ){
root = u ;
break ;
}
}
/* 利用深度来判断是否为满K叉树 */
queue< int > Q ;
Q.push( root ); dep[root] = ;
Num[] ++ ; while( !Q.empty() ){
int u = Q.front() ;
Q.pop();
du[u] = - ;
for(int i = head[u] ; ~i ; i = e[i].next ){
int To = e[i].to;
if( du[To] == - ) continue ;
dep[To] = dep[u] + ;
Num[dep[To]] ++ ;
Max_dep = max( dep[To] , Max_dep );
Q.push(To); }
} for(int i=;i<Max_dep;i++){
if( Num[i]*k != Num[i+] ) f = false ;
}
}
}else{
f = false ;
} if( f ){
printf("%d\n",k);
}else{
printf("-1\n");
}
}
return ;
} /*
10
7
1 4
4 5
3 1
2 3
7 3
4 6
7
1 4
1 5
1 2
5 3
5 6
5 7
13
1 2
1 3
1 4
2 5
2 6
2 7
3 8
3 9
3 10
5 11
5 12
5 13
5
1 2
2 3
3 4
4 5 */
【满k叉树】Perfect Tree的更多相关文章
- n层满k叉树总共有多少个节点
2叉树 1 3 7 对应公式为(2^n-1)/1 3叉树 1 4 13 对应公式为(3^n-1)/2 4叉树 1 5 21对应公式为(4^n-1)/3 ... n层k叉树,总共有(k^n-1)/k-1 ...
- HDU 6121 Build a tree(完全K叉树)
http://acm.hdu.edu.cn/showproblem.php?pid=6121 题意:给你一颗完全K叉树,求出每棵子树的节点个数的异或和. 思路: 首先需要了解一些关于完全K叉树或满K叉 ...
- 2017多校第7场 HDU 6121 Build a tree K叉树,思维
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6121 题意:一个n个点的完全k叉树,求每个节点的size的异或和. 解法:容易发现,考虑根的所有孩子, ...
- HDU 6121 Build a tree(k叉树的子树大小相异)
http://acm.hdu.edu.cn/showproblem.php?pid=6121 题目大意: 给你一颗 n 个节点的完全 k 叉树,问你这棵树中所有子树结点个数的总异或值. 分析: 我们很 ...
- Comet OJ 夏季欢乐赛 完全k叉树
完全k叉树 https://cometoj.com/contest/59/problem/A?problem_id=2712 题目描述 欢迎报考JWJU!这里有丰富的社团活动,比如为梦想奋斗的ACM集 ...
- 排序算法 以及HKU的一些数据结构 相关题目 以及 K叉树,二叉树 排列
冒泡排序.选择排序.快速排序.插入排序.希尔排序.归并排序.基数排序以及堆排序,桶排序 https://www.cnblogs.com/Glory-D/p/7884525.html https://b ...
- 【最优K叉树】hdu 5884 Sort
http://acm.hdu.edu.cn/showproblem.php?pid=5884 参考:https://www.cnblogs.com/jhz033/p/5879452.html [题意] ...
- 回溯法、子集树、排列树、满m叉树
显示图: 明确给出了图中的各顶点及边 隐式图: 仅给出初始节点.目标节点及产生子节点的条件(一般有问题提议隐含给出)的情况下,构造一个图. 回溯法: 从初始状态出发,在隐式图中以深度优先的方式搜索问题 ...
- 【LeetCode】863. All Nodes Distance K in Binary Tree 解题报告(Python)
[LeetCode]863. All Nodes Distance K in Binary Tree 解题报告(Python) 作者: 负雪明烛 id: fuxuemingzhu 个人博客: http ...
随机推荐
- LeetCode 第 153 场周赛
一.公交站间的距离(LeetCode-5181) 1.1 题目描述 1.2 解题思路 比较简单的一题,顺时针.逆时针两次遍历,就能解决. 1.3 解题代码 class Solution { publi ...
- SQL按照顺序时间段统计
借助master..spt_values表 按照时间(半小时)划分统计时间段: select ,dateInfo.dday) as time) StartTime, ,),dateInfo.dday) ...
- CodeForces - 1183E Subsequences (easy version) (字符串bfs)
The only difference between the easy and the hard versions is constraints. A subsequence is a string ...
- OpenJudge计算概论-求字母的个数(统计元音字母个数)
/*======================================================================= 求字母的个数 总时间限制: 1000ms 内存限制: ...
- python __new__
1.__new__的作用是什么? 依照Python官方文档的说法,__new__方法主要是当你继承一些不可变的class时(比如int, str, tuple), 提供给你一个自定义这些类的实例化过程 ...
- JV默认是如何处理异常
main函数收到这个问题时,有两种处理方式: a:自己将该问题处理,然后继续运行 b:自己没有针对的处理方式,只有交给调用main的jvm来处理 jvm有一个默认的异常处理机制,就将该异常进行处理. ...
- 002-02-RestTemplate-初始化调用流程
一.简述 调用 RestTemplate 的默认构造函数,RestTemplate 对象在底层通过使用 java.net 包下的实现创建 HTTP 请求,可以通过使用 ClientHttpReques ...
- Qt 自定义信号SIGNAL
emit toLine(lineQStr);connect(vcthread, SIGNAL(toLine(QString)), this, SLOT(appendText(QString)));
- 怎样加入社区项目Karbor的Review?
Review是社区衡量一个贡献者的重要标准. Review步骤: 1.登录Karbor Review地址: https://review.openstack.org/#/q/Karbor 这里可以看到 ...
- 根据DELTA自动生成SQL语句
上传客户端的CLIENTDATASET.delta到服务器的clientdataset.data,服务端解析clientdataset的数据生成相应的SQL语句. 相对于直接调用datasetprov ...