题目描述

Given a positive integer k, we define a rooted tree to be k-perfect, if and only if it meets both conditions below:
•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?

 

输入

Read from the standard input.
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.

 

输出

Write to the standard output.
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的更多相关文章

  1. 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 ...

  2. HDU 6121 Build a tree(完全K叉树)

    http://acm.hdu.edu.cn/showproblem.php?pid=6121 题意:给你一颗完全K叉树,求出每棵子树的节点个数的异或和. 思路: 首先需要了解一些关于完全K叉树或满K叉 ...

  3. 2017多校第7场 HDU 6121 Build a tree K叉树,思维

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6121 题意:一个n个点的完全k叉树,求每个节点的size的异或和. 解法:容易发现,考虑根的所有孩子, ...

  4. HDU 6121 Build a tree(k叉树的子树大小相异)

    http://acm.hdu.edu.cn/showproblem.php?pid=6121 题目大意: 给你一颗 n 个节点的完全 k 叉树,问你这棵树中所有子树结点个数的总异或值. 分析: 我们很 ...

  5. Comet OJ 夏季欢乐赛 完全k叉树

    完全k叉树 https://cometoj.com/contest/59/problem/A?problem_id=2712 题目描述 欢迎报考JWJU!这里有丰富的社团活动,比如为梦想奋斗的ACM集 ...

  6. 排序算法 以及HKU的一些数据结构 相关题目 以及 K叉树,二叉树 排列

    冒泡排序.选择排序.快速排序.插入排序.希尔排序.归并排序.基数排序以及堆排序,桶排序 https://www.cnblogs.com/Glory-D/p/7884525.html https://b ...

  7. 【最优K叉树】hdu 5884 Sort

    http://acm.hdu.edu.cn/showproblem.php?pid=5884 参考:https://www.cnblogs.com/jhz033/p/5879452.html [题意] ...

  8. 回溯法、子集树、排列树、满m叉树

    显示图: 明确给出了图中的各顶点及边 隐式图: 仅给出初始节点.目标节点及产生子节点的条件(一般有问题提议隐含给出)的情况下,构造一个图. 回溯法: 从初始状态出发,在隐式图中以深度优先的方式搜索问题 ...

  9. 【LeetCode】863. All Nodes Distance K in Binary Tree 解题报告(Python)

    [LeetCode]863. All Nodes Distance K in Binary Tree 解题报告(Python) 作者: 负雪明烛 id: fuxuemingzhu 个人博客: http ...

随机推荐

  1. HttpClient学习(二)—— MinimalHttpClient源码解析

    依赖关系 方法 class MinimalHttpClient extends CloseableHttpClient { //连接管理器 private final HttpClientConnec ...

  2. java大型互联网项目大流量高并发所需的技术

    互联网一般运行技术:webservice,jquery,访问量,缓存,数据安全等,JAVA后台就比较多了,不过,像这种大型的互联网项目,基本框架都有了,你需要做的就是熟悉业务,熟悉他们公司所用的框架, ...

  3. 使用SQL中的update更新多个字段值

    使用SQL中的update更新多个字段值,set后面的条件要用逗号不能用and set后面的多个条件之间没有关联也不可以有关联,所以就不能用and了:where 条件后面 可以为and 如: upda ...

  4. golang ssh 远程执行命令(有一些命令会报command not found)

    func sshSession(user, password, host string, port int) (sshSession *ssh.Session, err error) { //参数: ...

  5. 转录调控 | Transcriptional Regulation | Regulon

    scRNA-seq做完该做的QC.normalization.imputation.clustering.trajectory和integration,就会开始做转录调控的分析了. 核心就是围绕着TF ...

  6. SQL-W3School-函数:SQL MAX() 函数

    ylbtech-SQL-W3School-函数:SQL MAX() 函数 1.返回顶部 1. MAX() 函数 MAX 函数返回一列中的最大值.NULL 值不包括在计算中. SQL MAX() 语法 ...

  7. vue页面刷新重定向

    在App.vue中,添加如下代码: created(){ if(this.$router.path !== '/RealTimeMonitoring'){ this.$router.replace(' ...

  8. angular点击事件和表单事件

    <div style="text-align:center"> <h1> Welcome to {{ title }}! </h1> <b ...

  9. String,StringBuilder 和StringBuffer区别

    1. String 和字符串缓冲区的区别是: String 是一个不可变的字符序列 , 而字符串缓冲区是可变的 2. StringBuffer 是一个线程安全的可变字符序列 ; 线程安全对应的效率低 ...

  10. 002-创建型-02-抽象工厂模式(Abstract Factory)

    一.概述 抽象工厂模式提供同一个创建一系列相关或相互依赖对象的接口,无须指定它们具体的类 抽象工厂模式是所有形态的工厂模式中最为抽象和最具一般性的一种形态.抽象工厂模式是指当有多个抽象角色时,使用的一 ...