[BZOJ 1005] 明明的烦恼
标签: 组合数 Prufer序列
题意
给出一棵树上某些点的度数(-1 就是不限制度数)
求有多少种不同的树的个数
题解
要做这道题首先得知道Prufer序列。
每一个这样的序列都对应着一棵树。
同时每个点的度数减1 就是Prufer序列上这个点的出现次数。
然后用组合数搞一搞就行了。
这题要用高精度。
Code
#include #include #include #include #include #include #include #include #include #include