• P4430 小猴打架、P4981 父子


    prufer编码

    当然你也可以理解为 Cayley 公式,其实这个公式就是prufer编码经过一步就能推出的

    P4430 小猴打架
    P4981 父子
    这俩题差不多


    先说父子,很显然题目就是让你求(n)个点的有根树有几条
    (n)个点的无根树的 prufer 编码有(n-2)位,且编码和树一一对应并且每一位可以重复
    那么就有(n^{n-2})种构造无根树的方法
    所以,就让每一个节点轮流当根,所以答案就是(n^{n-2} imes n=n^{n-1})

    #include<cstdio>
    #include<algorithm>
    #include<iostream>
    #include<cmath>
    #include<iomanip>
    #include<cstring>
    #define reg register
    #define EN std::puts("")
    #define LL long long
    inline int read(){
    	register int x=0;register int y=1;
    	register char c=std::getchar();
    	while(c<'0'||c>'9'){if(c=='-') y=0;c=std::getchar();}
    	while(c>='0'&&c<='9'){x=x*10+(c^48);c=std::getchar();}
    	return y?x:-x;
    }
    inline LL power(LL a,LL b,LL mod){
    	LL ret=1;
    	while(b){
    		if(b&1) ret=ret*a%mod;
    		a=a*a%mod;b>>=1;
    	}
    	return ret;
    }
    int main(){int T=read();while(T--){
    	int n=read();
    	std::printf("%lld
    ",power(n,n-1,1e9+9));
    }
    	return 0;
    }
    

    小猴打架那题:
    一开始森林里面有(N)只互不相识的小猴子,它们经常打架,但打架的双方都必须不是好朋友。
    每次打完架后,打架的双方以及它们的好朋友就会互相认识,成为好朋友。经过(N-1)次打架之后,整个森林的小猴都会成为好朋友
    现在的问题是,总共有多少种不同的打架过程。
    比如当(N=3)时,就有({1-2,1-3},{1-2,2-3},{1-3,1-2},{1-3,2-3},{2-3,1-2},{2-3,1-3})六种不同的打架过程。

    这个题要求的是无根树,但是还要算上(n-1)条边被加入的不同顺序
    所以答案就是((n-1)! imes n^{n-2})

    #include<cstdio>
    #include<algorithm>
    #include<iostream>
    #include<cmath>
    #include<iomanip>
    #include<cstring>
    #define reg register
    #define EN std::puts("")
    #define LL long long
    inline int read(){
    	register int x=0;register int y=1;
    	register char c=std::getchar();
    	while(c<'0'||c>'9'){if(c=='-') y=0;c=std::getchar();}
    	while(c>='0'&&c<='9'){x=x*10+(c^48);c=std::getchar();}
    	return y?x:-x;
    }
    inline LL power(LL a,LL b,LL mod){
    	LL ret=1;
    	while(b){
    		if(b&1) ret=ret*a%mod;
    		a=a*a%mod;b>>=1;
    	}
    	return ret;
    }
    int main(){
    	int n=read();
    	LL ans=1;
    	for(reg int i=1;i<n;i++) ans=ans*i%9999991;
    	std::printf("%lld
    ",ans*power(n,n-2,9999991)%9999991);
    	return 0;
    }
    
  • 相关阅读:
    笔记:C/C++字符函数的使用
    学习游戏基础编程3:地图编辑器
    学习游戏基础编程2:Win32分割窗口
    学习游戏基础编程1:Win32自定义控件
    [WebServer] Tomcat 配置访问限制:访问白名单和访问黑名单
    [WebServer] Windows操作系统下 Tomcat 服务器运行 PHP 的环境配置
    XSLT函数集合:数值函数、字符串函、节点集函数和布尔函数
    腾讯的一道JavaScript面试题
    【转】AES 进一步的研究
    MQTT-Client-FrameWork使用整理
  • 原文地址:https://www.cnblogs.com/suxxsfe/p/12641846.html
Copyright © 2020-2023  润新知