시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 32 MB116101012.195%

문제

The United Federation of Planets is an alliance of \(N\) planets, they are indexed from \(1\) to \(N\). Some planets are connected by space tunnels. In a space tunnel, a starship can fly both ways really fast. There are exactly \(N - 1\) space tunnels, and we can travel from any planet to any other planet in the Federation using these tunnels.

It’s well known that there are \(D\) additional parallel universes. These are exact copies of our universe, they have the same planets and space tunnels. They are indexed from \(1\) to \(D\) (our universe has index \(0\)). We denote the planet \(x\) in universe \(i\) by \(P^i_x\). We can travel from one universe to another using dimension portals. For every \(i\) (\(0 \le i \le D - 1\)), we will place exactly one portal that allows us to fly from \(P^i_{A_i}\) to \(P^i_{B_i}\), for some planet indices \(A_i\) and \(B_i\) (i.e. \(1 \le A_i, B_i \le N\)).

Once all the portals are placed, Starship Batthyány will embark on its maiden voyage. It is currently orbiting around \(P^0_1\) . Captain Ágnes and Lieutenant Gábor have decided to play the following game: they choose alternately a destination (a planet) to fly to. This planet can be in the same universe, if a space tunnel goes there, or it can be in another universe, if a portal goes there. Their aim is to visit places where no one has gone before. That’s why, once they have visited a planet \(P^i_x\) , they never go back there (but they can visit the planet \(x\) in another universe). Captain Ágnes chooses the first destination (then Gábor, then Ágnes etc.). If somebody can’t choose a planet where they have not been before in his/her turn, he/she loses.

Captain Ágnes and Lieutenant Gábor are both very clever: they know the locations of all tunnels and portals, and they both play optimally. For how many different placements of portals does Captain Ágnes win the game? Two placements are different if there is an index \(i\) (\(0 \le i \le D - 1\)), where the \(i\)th portal connects different pairs of planets in the two placements (i.e \(A_i\) or \(B_i\) differs). This number can be very big, so we are interested in it modulo \(10^9 + 7\).

입력

The first line contains two space-separated integers, \(N\) and \(D\).

Each of the next \(N - 1\) lines contains two space-separated integers \(u\) and \(v\), denoting that \(P^i_u\) and \(P^i_v\) are connected by a space tunnel for all \(i\) (\(0 \le i \le D\)).

출력

You should print a single integer, the number of possible placements of portals where Captain Ágnes wins modulo \(10^9 + 7\). So the output range is \(0, 1, 2, \dots , 10^9 + 6\).

제한

  • \(2 \le N \le 10^5\)
  • \(1 \le D \le 10^{18}\)
  • \(1 \le u, v \le N\)

서브태스크

번호배점제한
17

$N = 2$

28

$N \le 100$ and $D = 1$

315

$N \le 1000$ and $D = 1$

415

$D = 1$

520

$N \le 1000$ and $D \le 10^5$

620

$D \le 10^5$

715

No additional constraints

예제 입력 1

3 1
1 2
2 3

예제 출력 1

4

힌트

There is only 1 portal and 3 · 3 = 9 different placements.

The following 4 placements are the ones where the Captain wins.

채점 및 기타 정보

  • 예제는 채점하지 않는다.