PivotOJ

Counting heaps

시간 제한: 5000ms메모리 제한: 128MB출처: CERC 2008BOJ 7889

문제

We are given a rooted tree of n vertices. The vertices are to be labeled with numbers 1,2,...,n so that each label is unique and the heap condition holds, i.e. the label of any vertex is less than the label of its parent. How many such labellings exist? Since this number may be quite large, calculate only its remainder modulo m.

입력

The input contains several tree descriptions. The first line contains the number of input trees t (t ≤ 250). Each tree description begins with a line containing the size of the tree n (1 ≤ n ≤ 500000) and an integer m (2 ≤ m ≤ 109). n  1 lines follow, i-th of which contains p(i + 1), the number of the parent of the i + 1-th vertex (1 ≤ p(i + 1) ≤ i). Vertex number 1 will be the root in each tree, so its parent will not be given. Total size of the input will not exceed 50MB.

출력

For each tree output the number of its valid labellings modulo given m.

 

힌트

The 8 possible labellings from the last example test case are as follows:

예제

예제 1

입력
4
3 1000000
1
1
4 1000000
1
1
1
5 1000000
1
2
3
4
5 1000000
1
1
3
3
출력
2
6
1
8
코드를 제출하려면 로그인하세요.