JAG Asia 2016-Similarity of Subtrees(BFS+哈希)

Similarity of Subtrees

时间限制: 1 Sec  内存限制: 128 MB
题目描述
Define the depth of a node in a rooted tree by applying the following rules recursively:
·The depth of a root node is 0.
·The depths of child nodes whose parents are with depth d are d+1.
Let S(T,d) be the number of nodes of T with depth d. Two rooted trees T and T′ are similar if and only if S(T,d) equals S(T′,d) for all non-negative integer d.

You are given a rooted tree T with N nodes. The nodes of T are numbered from 1 to N. Node 1 is the root node of T. Let Ti be the rooted subtree of T whose root is node i. Your task is to write a program which calculates the number of pairs (i,j) such that Ti and Tj are similar and i<j.

 

输入
The input consists of a single test case.

N
a1 b1
a2 b2
...
aN−1 bN−1

The first line contains an integer N (1≤N≤100,000), which is the number of nodes in a tree. The following N−1 lines give information of branches: the i-th line of them contains ai and bi, which indicates that a node ai is a parent of a node bi. (1≤ai,bi≤N,ai≠bi) The root node is numbered by 1. It is guaranteed that a given graph is a rooted tree, i.e. there is exactly one parent for each node except the node 1, and the graph is connected.

 

输出
Print the number of the pairs (x,y) of the nodes such that the subtree with the root x and the subtree with the root y are similar and x<y.

 

样例输入

5
1 2
1 3
1 4
1 5
样例输出
6

 1 #include<bits/stdc++.h>
 2 #pragma GCC optimize(3)
 3 using namespace std;
 4 typedef long long ll;
 5 const int maxn=1e6+7;
 6 const ll prime=1e5+7;
 7 const ll mod=1e9+7;
 8 map<ll,ll>MAP;
 9 ll Hash_val[maxn];
10 vector<int>vct[maxn];
11 void bfs(int a)
12 {
13     Hash_val[a]=1;
14     int siz=vct[a].size();
15     for(int i=0;i<siz;++i)
16     {
17         int b=vct[a][i];
18         bfs(b);
19         Hash_val[a]=(Hash_val[a]+Hash_val[b]*prime)%mod;
20     }
21     MAP[Hash_val[a]]++;
22 }
23 int main()
24 {
25     int n;
26     scanf("%d",&n);
27     for(int i=1;i<n;++i)
28     {
29         int a,b;
30         scanf("%d%d",&a,&b);
31         vct[a].push_back(b);
32     }
33     ll ans=0;
34     bfs(1);
35     for(map<ll,ll>::iterator it=MAP.begin();it!=MAP.end();++it)
36     {
37         ans+=(it->second-1)*(it->second)/2;
38     }
39     printf("%lld\n",ans);
40     return 0;
41 }

 

 

转载于:https://www.cnblogs.com/CharlieWade/p/11449036.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值