#584
Unrated
Balancing a Tree
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Farmer John has conducted an extensive study of the evolution of different cow breeds. The result is a rooted tree with NN (2N1052\le N\le 10^5) nodes labeled 1N1\ldots N, each node corresponding to a cow breed. For each i[2,N]i\in [2,N], the parent of node ii is node pip_i (1pi<i1\le p_i<i), meaning that breed ii evolved from breed pip_i. A node jj is called an ancestor of node ii if j=pij=p_i or jj is an ancestor of pip_i.

Every node ii in the tree is associated with a breed having an integer number of spots sis_i. The "imbalance" of the tree is defined to be the maximum of sisj|s_i-s_j| over all pairs of nodes (i,j)(i,j) such that jj is an ancestor of ii.

Farmer John doesn't know the exact value of sis_i for each breed, but he knows lower and upper bounds on these values. Your job is to assign an integer value of si[li,ri]s_i \in [l_i,r_i] (0liri1090\le l_i\le r_i\le 10^9) to each node such that the imbalance of the tree is minimized.

입력

The first line contains TT (1T101\le T\le 10), the number of independent test cases to be solved, and an integer B{0,1}B\in \{0,1\}.

Each test case starts with a line containing NN, followed by N1N-1 integers p2,p3,,pNp_2,p_3,\ldots,p_N.

The next NN lines each contain two integers lil_i and rir_i.

It is guaranteed that the sum of NN over all test cases does not exceed 10510^5.

출력

For each test case, output one or two lines, depending on the value of BB.

The first line for each test case should contain the minimum imbalance.

If B=1,B=1, then print an additional line with NN space-separated integers s1,s2,,sNs_1,s_2,\ldots, s_N containing an assignment of spots that achieves the above imbalance. Any valid assignment will be accepted.

예제 입력 1

3 0
3
1 1
0 100
1 1
6 7
5
1 2 3 4
6 6
1 6
1 6
1 6
5 5
3
1 1
0 10
0 1
9 10

예제 출력 1

3
1
4

예제 입력 2

3 1
3
1 1
0 100
1 1
6 7
5
1 2 3 4
6 6
1 6
1 6
1 6
5 5
3
1 1
0 10
0 1
9 10

예제 출력 2

3
3 1 6
1
6 5 5 5 5
4
5 1 9

점수

Test cases 3-4 satisfy li=ril_i=r_i for all ii.Test cases 5-6 satisfy pi=i1p_i=i-1 for all ii.Test cases 7-16 satisfy no additional constraints.

Within each subtask, the first half of the test cases will satisfy B=0B=0, and the rest will satisfy B=1B=1.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.