CF1770E.Koxia and Tree

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Imi has an undirected tree with nn vertices where edges are numbered from 11 to n1n-1 . The ii -th edge connects vertices uiu_i and viv_i . There are also kk butterflies on the tree. Initially, the ii -th butterfly is on vertex aia_i . All values of aa are pairwise distinct.

Koxia plays a game as follows:

  • For i=1,2,,n1i = 1, 2, \dots, n - 1 , Koxia set the direction of the ii -th edge as uiviu_i \rightarrow v_i or viuiv_i \rightarrow u_i with equal probability.
  • For i=1,2,,n1i = 1, 2, \dots, n - 1 , if a butterfly is on the initial vertex of ii -th edge and there is no butterfly on the terminal vertex, then this butterfly flies to the terminal vertex. Note that operations are sequentially in order of 1,2,,n11, 2, \dots, n - 1 instead of simultaneously.
  • Koxia chooses two butterflies from the kk butterflies with equal probability from all possible k(k1)2\frac{k(k-1)}{2} ways to select two butterflies, then she takes the distance ^\dagger between the two chosen vertices as her score.

Now, Koxia wants you to find the expected value of her score, modulo 998244353998\,244\,353^\ddagger .

^\dagger The distance between two vertices on a tree is the number of edges on the (unique) simple path between them.

^\ddagger Formally, let M=998244353M = 998\,244\,353 . It can be shown that the answer can be expressed as an irreducible fraction pq\frac{p}{q} , where pp and qq are integers and q≢0(modM)q \not \equiv 0 \pmod{M} . Output the integer equal to pq1modMp \cdot q^{-1} \bmod M . In other words, output such an integer xx that 0x<M0 \le x < M and xqp(modM)x \cdot q \equiv p \pmod{M} .

输入格式

The first line contains two integers nn , kk ( 2kn31052 \leq k \leq n \leq 3 \cdot {10}^5 ) — the size of the tree and the number of butterflies.

The second line contains kk integers a1,a2,,aka_1, a_2, \dots, a_k ( 1ain1 \leq a_i \leq n ) — the initial position of butterflies. It's guaranteed that all positions are distinct.

The ii -th line in following n1n − 1 lines contains two integers uiu_i , viv_i ( 1ui,vin1 \leq u_i, v_i \leq n , uiviu_i \neq v_i ) — the vertices the ii -th edge connects.

It is guaranteed that the given edges form a tree.

输出格式

Output a single integer — the expected value of Koxia's score, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    3 2
    1 3
    1 2
    2 3

    输出#1

    748683266
  • 输入#2

    5 3
    3 4 5
    1 2
    1 3
    2 4
    2 5

    输出#2

    831870296

说明/提示

In the first test case, the tree is shown below. Vertices containing butterflies are noted as bold.

There are only 22 butterflies so the choice of butterflies is fixed. Let's consider the following 44 cases:

  • Edges are 121 \rightarrow 2 and 232 \rightarrow 3 : butterfly on vertex 11 moves to vertex 22 , but butterfly on vertex 33 doesn't move. The distance between vertices 22 and 33 is 11 .
  • Edges are 121 \rightarrow 2 and 323 \rightarrow 2 : butterfly on vertex 11 moves to vertex 22 , but butterfly on vertex 33 can't move to vertex 22 because it's occupied. The distance between vertices 22 and 33 is 11 .
  • Edges are 212 \rightarrow 1 and 232 \rightarrow 3 : butterflies on both vertex 11 and vertex 33 don't move. The distance between vertices 11 and 33 is 22 .
  • Edges are 212 \rightarrow 1 and 323 \rightarrow 2 : butterfly on vertex 11 doesn't move, but butterfly on vertex 33 move to vertex 22 . The distance between vertices 11 and 22 is 11 .

Therefore, the expected value of Koxia's score is 1+1+2+14=54\frac {1+1+2+1} {4} = \frac {5} {4} , which is 748683266748\,683\,266 after modulo 998244353998\,244\,353 .

In the second test case, the tree is shown below. Vertices containing butterflies are noted as bold. The expected value of Koxia's score is 116\frac {11} {6} , which is 831870296831\,870\,296 after modulo 998244353998\,244\,353 .

首页