HDU 5379 Mahjong tree(树的遍历&组合数学)
本文纯属原创,转载请注明出处。谢谢。
http://blog.csdn.net/zip_fan
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Little sun is an artist. Today he is playing mahjong alone. He suddenly feels that the tree in the yard doesn't look good. So he wants to decorate the tree.(The tree has n vertexs, indexed from 1 to n.)
Thought for a long time, finally he decides to use the mahjong to decorate the tree.
His mahjong is strange because all of the mahjong tiles had a distinct index.(Little sun has only n mahjong tiles, and the mahjong tiles indexed from 1 to n.)
He put the mahjong tiles on the vertexs of the tree.
As is known to all, little sun is an artist. So he want to decorate the tree as beautiful as possible.
His decoration rules are as follows: (1)Place exact one mahjong tile on each vertex.
(2)The mahjong tiles' index must be continues which are placed on the son vertexs of a vertex.
(3)The mahjong tiles' index must be continues which are placed on the vertexs of any subtrees. Now he want to know that he can obtain how many different beautiful mahjong tree using these rules, because of the answer can be very large, you need output the answer modulo 1e9 + 7.
The first line of the input is a single integer T, indicates the number of test cases.
For each test case, the first line contains an integers n. (1 <= n <= 100000)
And the next n - 1 lines, each line contains two integers ui and vi, which describes an edge of the tree, and vertex 1 is the root of the tree.
For each test case, output one line. The output format is "Case #x: ans"(without quotes), x is the case number, starting from 1.
2
9
2 1
3 1
4 3
5 3
6 2
7 4
8 7
9 3
8
2 1
3 1
4 3
5 1
6 4
7 5
8 4
Case #1: 32
Case #2: 16
要保证1、兄弟节点之间号是连续的,2、每棵子树号自身是连续的,求一共同拥有多少种可能。
#include <cstdio>
#include <cmath>
#include <cstring>
#include <string>
#include <map>
#include <queue>
#include <vector>
#include <iostream>
#include <algorithm>
#define moo 1000000007//10^9+7
#define PI acos(-1.0)
#define eps 1e-5
#pragma comment (linker,"/STACK:102400000,102400000")
using namespace std;
long long jie[100000+100];//存阶乘。即全排列情况
vector<int>tre[100000+100];//存点i能到的点,相当于邻接表建图。
int vis[100000+100];//存第i个点的訪问情况
void init()
{
jie[0]=1;
for(int i=1;i<=100000;i++)
{
jie[i]=jie[i-1]*i;
jie[i]%=moo;
}
}//n个无子节点的兄弟节点能够有n!种排列
void dfs1(int num)//先遍历一遍树,将多余的边删除
{
vis[num]=1;
int nn=tre[num].size();
int now=0;
while(now<nn)
{
if(vis[tre[num][now]]==1)
{
tre[num].erase(tre[num].begin()+now);
nn--;
continue;
}
dfs1(tre[num][now]);
now++;
}
}
long long dfs(int num,int has)//统计num节点的情况,has代表num是否有兄弟节点
{
if(tre[num].size()==0)//假设num没有子节点,直接return 1。表示仅仅有1种排列情况
return 1;
long long ans=1;
int num1=0;//存num点的子节点中无子节点的节点个数
int num2=0;//存num点的子节点中有子节点的节点个数
int nn=tre[num].size();
for(int i=0;i<nn;i++)
{
if(tre[tre[num][i]].size()==0)
num1++;
else
num2++;
}
if(num2>2)
return 0;//假设有超过2个点有子节点。那么一定无法满足条件。return 0
if(has==0)//假设num点没有兄弟节点,那么num点能够在子节点的最左或者最右,即2种选择
ans*=2;
ans*=jie[num1];//num的子节点中无子节点的节点能够组成全排列
ans%=moo;
if(num2==0)//假设没有有子节点的节点。那么该点统计完成
return ans;
if(tre[num].size()!=1)//假设不止有一个有子节点的子节点。那么该子节点能够在最左或最右
ans*=2;
int go;
if(tre[num].size()==1)//推断其子节点是否有兄弟节点,为其子节点的统计做准备
go=0;
else
go=1;
for(int i=0;i<nn;i++)
{
if(tre[tre[num][i]].size()!=0)
{
long long la=ans;
ans*=dfs(tre[num][i],go);//假设该点有子节点,继续统计
ans%=moo;
}
}
return ans%moo;
}
int main()
{
int T;
cin>>T;
int dd=T;
init();
while(T--)
{
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++)
tre[i].clear();
memset(vis,0,sizeof(vis));
for(int i=1;i<=n-1;i++)
{
int x,y;
scanf("%d%d",&x,&y);
tre[y].push_back(x);
tre[x].push_back(y);
}
dfs1(1);
printf("Case #%d: %I64d\n",dd-T,dfs(1,0));
}
return 0;
}
HDU 5379 Mahjong tree(树的遍历&组合数学)的更多相关文章
- Hdu 5379 Mahjong tree (dfs + 组合数)
题目链接: Hdu 5379 Mahjong tree 题目描述: 给出一个有n个节点的树,以节点1为根节点.问在满足兄弟节点连续 以及 子树包含节点连续 的条件下,有多少种编号方案给树上的n个点编号 ...
- HDU 5379 Mahjong tree(dfs)
题目链接:pid=5379">http://acm.hdu.edu.cn/showproblem.php? pid=5379 Problem Description Little su ...
- HDU 5379——Mahjong tree——————【搜索】
Mahjong tree Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Tota ...
- 2015 Multi-University Training Contest 7 hdu 5379 Mahjong tree
Mahjong tree Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Tota ...
- 2015多校第7场 HDU 5379 Mahjong tree 构造,DFS
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5379 题意:一颗n个节点n-1条边的树,现在要给每个节点标号(1~n),要求:(1)每一层的兄弟节点的 ...
- HDU 5379 Mahjong tree dfs+组合数学
题意:给你一棵树来分配号码,要求是兄弟节点连续并且每一棵子树连续. 思路:因为要求兄弟和子树都是连续的,所以自己打下草稿就可以发现如果一个节点有3个或3个以上的非叶子结点,那么就无论如何也不能达到目的 ...
- HDU 5379 Mahjong tree
题意:在一棵有n个节点的树上放编号从1到n的麻将,要求每个点的儿子节点之间的编号连续,每棵子树内的编号连续. 解法:手推一组样例之后就可以得到如下结论然后从根节点一边讨论一边搜就好了. 当一个节点只有 ...
- HDU 3333 - Turing Tree (树状数组+离线处理+哈希+贪心)
题意:给一个数组,每次查询输出区间内不重复数字的和. 这是3xian教主的题. 用前缀和的思想可以轻易求得区间的和,但是对于重复数字这点很难处理.在线很难下手,考虑离线处理. 将所有查询区间从右端点由 ...
- hdu 1710 Binary Tree Traversals 前序遍历和中序推后序
题链;http://acm.hdu.edu.cn/showproblem.php?pid=1710 Binary Tree Traversals Time Limit: 1000/1000 MS (J ...
随机推荐
- check source code after macro expand
Some time I'd like check source code after macro expand. We can use -E option to stop after the prep ...
- 交叉编译x264和ffmpeg
1.x264 ./configure --host=arm-hisiv300-linux CC=arm-hisiv300-linux-gcc --enable-pic --prefix=/usr/lo ...
- python3列表推导式和生成器。
1.把一个字符串变成 Unicode 码位的列表 >>> symbols = '$¢£¥€¤' >>> codes = [] >>> for sy ...
- 关于centos防火墙
Centos升级到7之后,内置的防火墙已经从iptables变成了firewalld Centos7默认安装了firewalld,如果没有安装的话,可以使用 yum install firewalld ...
- NYOJ 27.水池数目-DFS求连通块
水池数目 时间限制:3000 ms | 内存限制:65535 KB 难度:4 描述 南阳理工学院校园里有一些小河和一些湖泊,现在,我们把它们通一看成水池,假设有一张我们学校的某处的地图,这个地 ...
- Codeforces Gym100971 F.Two Points (IX Samara Regional Intercollegiate Programming Contest Russia, Samara, March 13)
这个题直接推公式就可以. 就是解一元二次方程,用高中学的公式,函数开口向上,求最大值为(4ac-b*b)/4a. 这个题推出来一元二次方程,然后将最大值的公式化简一下.公式很好推. 这个题有疑问,in ...
- HYSBZ 2818 Gcd【欧拉函数/莫比乌斯】
I - Gcd HYSBZ - 2818 给定整数N,求1<=x,y<=N且Gcd(x,y)为素数的数对(x,y)有多少对. Input 一个整数N Output 如题 Sample In ...
- 组队训练3回放 ——hnqw1214
组队训练3回放 练习赛过程回放: 开场先看最后一题, 发现是专题训练时做过的网络流原题, cst照着之前的打一遍,第一遍WA, 发现数组开小了,改大后AC. 这时候qw看B题, 一开始想不到方法, c ...
- 搞懂ZooKeeper的Watcher之源码分析及特性总结
前言 本章讲ZooKeeper重要的机制,Watcher特性.ZooKeeper允许客户端向服务端注册Watcher监听,当服务端一些指定事件触发了这个Watcher,那么就会向指定客户端发送一个事件 ...
- usaco-Subset Sums
题意: 给出一个1-n的数列,求把它分为两组数使得两组数的和相等的方案数. 分析: 如果可能分成两组,那么(n+1)n/2一定为偶数,且n%4=2或3.可以设dp[i][j]表示从1-i中的数拼出的方 ...