CF1010F.Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The Main Martian Tree grows on Mars. It is a binary tree (a rooted tree, with no more than two sons at each vertex) with nn vertices, where the root vertex has the number 11 . Its fruits are the Main Martian Fruits. It's summer now, so this tree does not have any fruit yet.

Autumn is coming soon, and leaves and branches will begin to fall off the tree. It is clear, that if a vertex falls off the tree, then its entire subtree will fall off too. In addition, the root will remain on the tree. Formally: the tree will have some connected subset of vertices containing the root.

After that, the fruits will grow on the tree (only at those vertices which remain). Exactly xx fruits will grow in the root. The number of fruits in each remaining vertex will be not less than the sum of the numbers of fruits in the remaining sons of this vertex. It is allowed, that some vertices will not have any fruits.

Natasha wondered how many tree configurations can be after the described changes. Since this number can be very large, output it modulo 998244353998244353 .

Two configurations of the resulting tree are considered different if one of these two conditions is true:

  • they have different subsets of remaining vertices;
  • they have the same subset of remaining vertices, but there is a vertex in this subset where they have a different amount of fruits.

输入格式

The first line contains two integers: nn and xx ( 1n1051 \le n \le 10^5 , 0x10180 \le x \le 10^{18} ) — the size of the tree and the number of fruits in the root.

The ii -th of the following (n1)(n-1) lines contains two integers aia_i and bib_i ( 1ai,bin1 \le a_i, b_i \le n ) — vertices connected by the ii -th edge of the tree.

It is guaranteed that the input data describes a correct binary tree with the root at the vertex 11 .

输出格式

Print one number — the number of configurations of the resulting tree modulo 998244353998244353 .

输入输出样例

  • 输入#1

    3 2
    1 2
    1 3
    

    输出#1

    13
    
  • 输入#2

    2 5
    1 2
    

    输出#2

    7
    
  • 输入#3

    4 10
    1 2
    1 3
    3 4
    

    输出#3

    441
    

说明/提示

Consider the first example.

There are 22 fruits at the vertex 11 . The following 1313 options are possible:

  • there is no vertex 22 , there is no vertex 33 ;
  • there is no vertex 22 , there are no fruits at the vertex 33 ;
  • there is no vertex 22 , there is 11 fruit at the vertex 33 ;
  • there is no vertex 22 , there are 22 fruits at the vertex 33 ;
  • there are no fruits at the vertex 22 , there is no vertex 33 ;
  • there are no fruits at the vertex 22 , there are no fruits at the vertex 33 ;
  • there are no fruits at the vertex 22 , there is 11 fruit at the vertex 33 ;
  • there are no fruits at the vertex 22 , there are 22 fruits at the vertex 33 ;
  • there is 11 fruit at the vertex 22 , there is no vertex 33 ;
  • there is 11 fruit at the vertex 22 , there are no fruits at the vertex 33 ;
  • there is 11 fruit at the vertex 22 , there is 11 fruit at the vertex 33 ;
  • there are 22 fruits at the vertex 22 , there is no vertex 33 ;
  • there are 22 fruits at the vertex 22 , there are no fruits at the vertex 33 .

Consider the second example. There are 55 fruits at the vertex 11 . The following 77 options are possible:

  • there is no vertex 22 ;
  • there are no fruits at the vertex 22 ;
  • there is 11 fruit at the vertex 22 ;
  • there are 22 fruits at the vertex 22 ;
  • there are 33 fruits at the vertex 22 ;
  • there are 44 fruits at the vertex 22 ;
  • there are 55 fruits at the vertex 22 .
首页