题目链接

https://acm.bnu.edu.cn/v3/problem_show.php?pid=52305

problem  description

In ICPCCamp, there are n cities and (n−1) (bidirectional) roads between cities. The i-th road is between the ai-th and bi-th cities. It is guaranteed that cities are connected. Recently, there are 2×ci −1 new roads built between the ai-th and bi-th cities. Bobo soon comes up with an idea to travel around the world! He plans to start in city 1 and returns to city 1 after traveling along every road exactly once. It is clear that Bobo has many plans to choose from. He would like to find out the number of different plans, modulo (109 + 7). Note that two plans A and B are considered different only if there exists an i where the i-th traveled road in plan A is different from the i-th road in plan B.

Input

The first line contains an integer n (2 ≤ n ≤ 105 ). The i-th of the following (n − 1) lines contains 3 integers ai , bi , ci (1 ≤ ai , bi ≤ n, ci ≥ 1, c1 + c2 + · · · + cn−1 ≤ 106 ).

Output

An integer denotes the number of plans modulo (109 + 7).

Examples

standard input

3

1 2 1

2 3 1

3

1 2 1

1 3 2

standard output

4

144

题意:输入n 表示由n个节点构成的树,然后输入n-1条边,n-1行每行输入ai bi c 表示ai点和bi点之间有2*c条边相连,现在求从1号点开始走完所有边且每条边只走一次的方案数?

思路:深搜,然后排列组合,举两个例子:

        

第一个图片中:定义sum=1,从1号点开始向下深搜,到达孩子2号点的时候sum*=2!  表示从1到2号点走遍边的方法数,然后继续向下深搜到4号点,sum*=2!  然后返回再到5号点,sum*=4! 再返回走到6号点,sum*=2! ,然后返回2号点,这时sum*=4!/2! 为什么呢? 因为从2号点开始走完它的直系(儿子)孩子节点时,它的儿子路径之间存在先后顺序,所以乘上路径数的阶乘,但要除去重复的部分比如从2号点到5号点时这两条路径的先后顺序在之前的4!中已经考虑了,接下来就是相同的过程了......注意的是下面的孩子节点算完了,再计算上层节点时就不需要考虑了,但是相邻两层的节点之间还是有影响的,这个图看不出来,我用下面一个图作解释。

第二个图片中:按照之前的算法为sum=4!*2!=48  其实正确的解是96  ,少乘了一个2,为什么呢? 因为上面一层的路径对下面一层的路径产生了影响,上一层有两条路径,下面一层只有一条路径,那么可以分析存在两种情况:1、  1->2->3->2->1->2->1         2、  1->2->1->2->3->2->1   怎么产生的? 其实是在走上一层的路径时,在哪一次走的这一层的路径,用挡板法,设上一层有t条路径,这一层有s条路径,那么得在t次把下面的s条路径走完,也就是C(t+s-1,t-1) 。

代码如下:

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string.h>
typedef long long LL;
const LL maxn=1e5+;
const LL mod=1e9+;
using namespace std;
struct Tree
{
LL to,next,c;
} edge[maxn*];
LL Inv[*maxn];
LL tot,head[maxn];
LL jc[maxn*];
LL sum;
void Init()
{
Inv[]=;
Inv[] = ;
for(LL i=; i<*maxn; i++)
Inv[i] = (mod-mod/i)*Inv[mod%i]%mod;
for(LL i=; i<*maxn; i++)
Inv[i] = (Inv[i-]*Inv[i])%mod;
}
void init()
{
tot=;
memset(head,-,sizeof(head));
}
void add_edge(LL u,LL v,LL c)
{
edge[tot].to=v;
edge[tot].c=c;
edge[tot].next=head[u];
head[u]=tot++;
} void init2()
{
jc[]=;
for(LL i=; i<maxn*; i++)
jc[i]=((jc[i-]*i)%mod);
}
LL road[maxn];
void dfs(LL u,LL pre)
{
road[u]=;
for(LL i=head[u]; i!=-; i=edge[i].next)
{
LL v=edge[i].to;
if(v==pre) continue;
dfs(v,u);
road[u]+=edge[i].c;
sum=(((sum*jc[edge[i].c*])%mod)*Inv[edge[i].c])%mod;
sum=((sum* jc[(road[v]+edge[i].c-)]%mod)*Inv[edge[i].c-] )%mod;
sum=(sum*Inv[road[v]])%mod;
}
sum=(sum*jc[road[u]])%mod;
} int main()
{
Init();
init2();
LL n,u,v,c;
while(scanf("%lld",&n)!=-)
{
sum=;
init();
for(LL i=; i<n; i++)
{
scanf("%lld%lld%lld",&u,&v,&c);
add_edge(u,v,c);
add_edge(v,u,c);
}
dfs(,);
printf("%lld\n",sum);
}
return ;
}

2016弱校联盟十一专场10.2---Around the World(深搜+组合数、逆元)的更多相关文章

  1. 2016弱校联盟十一专场10.3---Similarity of Subtrees(深搜+hash、映射)

    题目链接 https://acm.bnu.edu.cn/v3/problem_show.php?pid=52310 problem description Define the depth of a ...

  2. 2016弱校联盟十一专场10.5---As Easy As Possible(倍增)

    题目链接 https://acm.bnu.edu.cn/v3/contest_show.php?cid=8506#problem/A problem description As we know, t ...

  3. (2016弱校联盟十一专场10.3) D Parentheses

    题目链接 把左括号看成A右括号看成B,推一下就行了.好久之前写的,推到最后发现是一个有规律的序列. #include <bits/stdc++.h> using namespace std ...

  4. (2016弱校联盟十一专场10.3) B.Help the Princess!

    题目链接 宽搜一下就行. #include <iostream> #include<cstdio> #include<cstring> #include<qu ...

  5. (2016弱校联盟十一专场10.3) A.Best Matched Pair

    题目链接 #include<cstdio> #include<cstring> #include<algorithm> #include<stack> ...

  6. 2016弱校联盟十一专场10.3---We don't wanna work!(STL--set的使用)

    题目链接 https://acm.bnu.edu.cn/v3/contest_show.php?cid=8504#problem/C 代码如下: #include <iostream> # ...

  7. (2016弱校联盟十一专场10.2) A.Nearest Neighbor Search

    题目链接 水题,算一下就行. #include <bits/stdc++.h> using namespace std; typedef long long ll; ll x[],y[], ...

  8. (2016弱校联盟十一专场10.2) E.Coins

    题目链接 很久之前写的了,好像是对拍打表过的,推一下就行了. #include <bits/stdc++.h> using namespace std; typedef long long ...

  9. (2016弱校联盟十一专场10.5) F. Fibonacci of Fibonacci

    题目链接 题目大意就是这个,先找出下标的循环节,再快速幂对20160519取余就行了. 找出下标循环节: #include <cstdio> #include <iostream&g ...

随机推荐

  1. Atitit 知识图谱的数据来源

    Atitit 知识图谱的数据来源   2. 知识图谱的数据来源1 a) 百科类数据2 b) 结构化数据3 c) 半结构化数据挖掘AVP (垂直站点爬虫)3 d) 通过搜索日志(query record ...

  2. salesforce 零基础学习(二十五)PickList简单联动操作

    有的时候,项目需要一些联动的操作,比如省和市之间的联动,不同的省应该显示不同的城市. 操作步骤如下: 1.新建provice字段,并且初始化相关的值 2.新建city字段,并且初始化相关的值 3.在P ...

  3. AngularJS $http配置为form data 提交

    AngularJS $http配置为form data 提交 $scope.formData = {}; $http({ method: 'POST', url: '/user/', // pass ...

  4. 自动登录VSS

    每次打开vss都需要输入用户名.密码,用起来多少有些麻烦.用以下两种方式即可实现自动登录: 方法1: 在vss快捷方式的命令行最后面添加-y参数 "C:/Program Files/Micr ...

  5. Oracle 11g系列:数据表对象

    Oracle数据库的下一层逻辑结构并非数据表,而是表空间.每个数据表都属于唯一的表空间. 1.Oracle表空间 与数据表相同,Oracle表空间是一个逻辑对象,而非物理对象,是数据库的组成部分.当使 ...

  6. select元素javascript常用操作 转

    /*------------------------------------------------------ *作者:xieyu @ 2007-08-14 *语言:JavaScript *说明:s ...

  7. javascript中数组和字符串的方法比较

    × 目录 [1]可索引 [2]转换 [3]拼接[4]创建[5]位置 前面的话 字符串和数组有很多的相同之处,它们的方法众多,且相似度很高:但它们又有不同之处,字符串是不可变值,于是可以把其看作只读的数 ...

  8. kubernetes

    项目主页:http://kubernetes.io/ docker仅能在单机上部署容器,而kubernetes可以统一管理各类容器,形成集群.Kubernetes作为Docker生态圈中重要一员,是G ...

  9. Redis应用场景-转载

    1.  MySql+Memcached架构的问题 实际MySQL是适合进行海量数据存储的,通过Memcached将热点数据加载到cache,加速访问,很多公司都曾经使用过这样的架构,但随着业务数据量的 ...

  10. IIS负载均衡(转)

    在大型Web应用系统中,由于请求的数据量过大以及并发的因素,导致Web系统会出现宕机的现象,解决这一类问题的方法我个人觉得主要在以下几个方面: 1.IIS 负载均衡. 2.数据库 负载均衡. 3.系统 ...