#ARC101C. [ARC101E] Ribbons on Tree

[ARC101E] Ribbons on Tree

Score : 900900 points

Problem Statement

Let NN be an even number.

There is a tree with NN vertices. The vertices are numbered 1,2,...,N1, 2, ..., N. For each ii (1iN11 \leq i \leq N - 1), the ii-th edge connects Vertex xix_i and yiy_i.

Snuke would like to decorate the tree with ribbons, as follows.

First, he will divide the NN vertices into N/2N / 2 pairs. Here, each vertex must belong to exactly one pair. Then, for each pair (u,v)(u, v), put a ribbon through all the edges contained in the shortest path between uu and vv.

Snuke is trying to divide the vertices into pairs so that the following condition is satisfied: "for every edge, there is at least one ribbon going through it." How many ways are there to divide the vertices into pairs, satisfying this condition? Find the count modulo 109+710^9 + 7. Here, two ways to divide the vertices into pairs are considered different when there is a pair that is contained in one of the two ways but not in the other.

Constraints

  • NN is an even number.
  • 2N50002 \leq N \leq 5000
  • 1xi,yiN1 \leq x_i, y_i \leq N
  • The given graph is a tree.

Input

Input is given from Standard Input in the following format:

NN

x1x_1 y1y_1

x2x_2 y2y_2

::

xN1x_{N - 1} yN1y_{N - 1}

Output

Print the number of the ways to divide the vertices into pairs, satisfying the condition, modulo 109+710^9 + 7.

4
1 2
2 3
3 4
2

There are three possible ways to divide the vertices into pairs, as shown below, and two satisfy the condition: the middle one and the right one.

4
1 2
1 3
1 4
3

There are three possible ways to divide the vertices into pairs, as shown below, and all of them satisfy the condition.

6
1 2
1 3
3 4
1 5
5 6
10
10
8 5
10 8
6 5
1 5
4 8
2 10
3 6
9 2
1 7
672