| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 数据结构与算法 -> Edge Groups 思维 树形dp -> 正文阅读 |
|
[数据结构与算法]Edge Groups 思维 树形dp |
Given an undirected connected graph of?nn?vertices and?n?1n?1?edges, where?nn?is guaranteed to be odd. You want to divide all the?n?1n?1?edges to?n?12n?12?groups under following constraints:
Determine the number of valid dividing schemes modulo?998244353998244353. Two schemes are considered different if there are 2 edges that are in the same group in one scheme but not in the same group in the other scheme. Input The first line contains one integer?n(3≤n≤105)n(3≤n≤105), denoting the number of vertices. Following?n?1n?1?lines each contains two integers?u,v(1≤u<v≤n)u,v(1≤u<v≤n), denoting that vertex?u,vu,v?are undirectedly connected by an edge. It is guaranteed that?nn?is odd and that the given graph is connected. Output Output one line containing one integer, denoting the number of valid dividing schemes modulo?998244353998244353. Example input Copy 7 1 2 1 3 1 7 4 7 5 7 6 7 output Copy 3 Note The 3 schemes are:
拿这个图来分析 对于2这个结点 只能24 和 25? 组成一组 对于3这个结点 因为73 和 79 组成一组所以3结点是无法用37这条边的 计算3的贡献的时候要忽略37这条边 计算贡献的方法:对于一个结点如果它与它子结点的有效边是偶数的话(上图2,3结点都是这种情况)假设有效边数是n 对这n条边进行全排列方案数是n!因为每组里面的边是没有顺序的 所以除以2^(n/2) 然后又因为每组是没有顺序的所以除以(n/2)! 然后得到(n-1)!! 两个!表示所有奇数的乘积 当然还要乘上每一个子结点的贡献 如果是奇数的话 就是(n-2)!! * n 也就是 n!!
? |
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/26 11:45:44- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |