A15496 | Tree Sum
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let us call an edge-weighted tree with $n$ vertices numbered from $1$ to $n$ good if the weight of each edge is either $1$ or $-1$ and for each vertex $i$ , the product of the edge weights of all edges having $i$ as one endpoint is $-1$ .
You are given a positive integer $n$ . There are $n^{n-2} \cdot 2^{n-1}$ distinct $^\dagger$ edge-weighted trees with $n$ vertices numbered from $1$ to $n$ such that each edge is either $1$ or $-1$ . Your task is to find the sum of $d(1,n)^\ddagger$ of all such trees that are good. Since the answer can be quite large, you only need to find it modulo $998\,244\,353$ .
$^\dagger$ Two trees are considered to be distinct if either:
- there exists two vertices such that there is an edge between them in one of the trees, and not in the other.
- there exists two vertices such that there is an edge between them in both trees but the weight of the edge between them in one tree is different from the one in the other tree.
Note that by [Cayley's formula](https://rb.gy/hho7vu), the number of trees on $n$ labeled vertices is $n^{n-2}$ . Since we have $n-1$ edges, there are $2^{n-1}$ possible assignment of weights(weight can either be $1$ or $-1$ ). That is why total number of distinct edge-weighted tree is $n^{n-2} \cdot 2^{n-1}$ .
$^\ddagger$ $d(u,v)$ denotes the sum of the weight of all edges on the unique simple path from $u$ to $v$ .
You are given a positive integer $n$ . There are $n^{n-2} \cdot 2^{n-1}$ distinct $^\dagger$ edge-weighted trees with $n$ vertices numbered from $1$ to $n$ such that each edge is either $1$ or $-1$ . Your task is to find the sum of $d(1,n)^\ddagger$ of all such trees that are good. Since the answer can be quite large, you only need to find it modulo $998\,244\,353$ .
$^\dagger$ Two trees are considered to be distinct if either:
- there exists two vertices such that there is an edge between them in one of the trees, and not in the other.
- there exists two vertices such that there is an edge between them in both trees but the weight of the edge between them in one tree is different from the one in the other tree.
Note that by [Cayley's formula](https://rb.gy/hho7vu), the number of trees on $n$ labeled vertices is $n^{n-2}$ . Since we have $n-1$ edges, there are $2^{n-1}$ possible assignment of weights(weight can either be $1$ or $-1$ ). That is why total number of distinct edge-weighted tree is $n^{n-2} \cdot 2^{n-1}$ .
$^\ddagger$ $d(u,v)$ denotes the sum of the weight of all edges on the unique simple path from $u$ to $v$ .
输入格式
The first and only line of input contains a single integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ).
输出格式
The only line of output should contain a single integer, the required answer, modulo $998\,244\,353$ .
输入输出样例
输入 #1
2
输出 #1
998244352
输入 #2
1
输出 #2
0
输入 #3
4
输出 #3
998244343
输入 #4
10
输出 #4
948359297
输入 #5
43434
输出 #5
86232114
In the first test case, there is only $1$ distinct good tree. The value of $d(1,2)$ for that tree is $-1$ , which is $998\,244\,352$ under modulo $998\,244\,353$ .
In the second test case, the value of $d(1,1)$ for any tree is $0$ , so the answer is $0$ .
In the third test case, there are $16$ distinct good trees. The value of $d(1,4)$ is:
- $-2$ for $2$ trees;
- $-1$ for $8$ trees;
- $0$ for $4$ trees;
- $1$ for $2$ trees.
The sum of $d(1,4)$ over all trees is $2 \cdot (-2) + 8 \cdot (-1) + 4 \cdot (0) + 2 \cdot (1) = -10$ , which is $998\,244\,343$ under modulo $998\,244\,353$ .
In the second test case, the value of $d(1,1)$ for any tree is $0$ , so the answer is $0$ .
In the third test case, there are $16$ distinct good trees. The value of $d(1,4)$ is:
- $-2$ for $2$ trees;
- $-1$ for $8$ trees;
- $0$ for $4$ trees;
- $1$ for $2$ trees.
The sum of $d(1,4)$ over all trees is $2 \cdot (-2) + 8 \cdot (-1) + 4 \cdot (0) + 2 \cdot (1) = -10$ , which is $998\,244\,343$ under modulo $998\,244\,353$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted