码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ1430: 小猴打架

时间:2018-03-15 22:20:32      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:scan   href   代码   line   problem   text   ++   using   turn   

【传送门:BZOJ1430


简要题意:

  给出n个点,求组成n-1条边且n个点为一棵树的情况数


题解:

  prufer数列例题

  具体请

  根据prufer数列,可以得到n^(n-2)棵树,而每棵树的建树方法为(n-1)!,所以ans=n^(n-2)*(n-1)!


参考代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdlib>
using namespace std;
typedef long long LL;
int main()
{
    LL n;
    scanf("%lld",&n);
    LL t=1;
    for(LL i=1;i<=n-2;i++)
    {
        t=(t*n)%9999991;
    }
    //t棵树
    for(int i=1;i<=n-1;i++) t=(t*i)%9999991;
    //t种建树方法 
    printf("%lld\n",t);
    return 0;
}

BZOJ1430: 小猴打架

标签:scan   href   代码   line   problem   text   ++   using   turn   

原文地址:https://www.cnblogs.com/Never-mind/p/8576353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!