IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: 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:

  • There are exactly 2 edges in each group
  • The 2 edges in the same group share a common vertex

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:

  • The 3 edge groups are?{1?2,1?3},{1?7,4?7},{5?7,6?7}{1?2,1?3},{1?7,4?7},{5?7,6?7}
  • The 3 edge groups are?{1?2,1?3},{1?7,5?7},{4?7,6?7}{1?2,1?3},{1?7,5?7},{4?7,6?7}
  • The 3 edge groups are?{1?2,1?3},{1?7,6?7},{4?7,5?7}{1?2,1?3},{1?7,6?7},{4?7,5?7}

拿这个图来分析

对于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!!

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 100010,MAX = 0x3f3f3f3f,mod = 998244353;
ll dp[MAXN];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0),cout.tie(0);
	int n,t1,t2;
	cin >> n;
	vector<int> v[n+1];
	for(int i = 1;i < n; i++){
		cin >> t1 >> t2;
		v[t1].push_back(t2);
		v[t2].push_back(t1);
	} 
	function<int(int,int)> dfs = [&] (int now,int fath){
		dp[now] = 1;
		int cnt = 0;
		for(int x : v[now]){
			if(x == fath) continue;
			if(!dfs(x,now)) cnt++;
			dp[now] = (dp[now]*dp[x])%mod;
		}
		for(int i = 1;i <= cnt; i += 2) dp[now] = (dp[now]*i)%mod;
		return cnt&1;
	};
	dfs(1,0);
	cout << dp[1];
	return 0;
}

?

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-03-17 22:25:52  更:2022-03-17 22:27:08 
 
开发: 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-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码