#Lutece0823. Little Wish ~lyrical step~

Little Wish ~lyrical step~

Migrated from Lutece 823 Little Wish ~lyrical step~

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

NN children are living in a tree with exactly NN nodes, on each node there lies either a boy or a girl.

A girl is said to be protected, if the distance between the girl and her nearest boy is no more than DD.

You want to do something good, so that each girl on the tree will be protected. On each step, you can choose two nodes, and swap the children living on them.

What is the minimum number of steps you have to take to fulfill your wish?

Input

The first line has a number TT (T150T\leq 150) , indicating the number of test cases.

In a case, the first line contain two number nn (1n501\leq n\leq 50), DD (1D100000001\leq D\leq 10000000), Which means the number of the node and the distance between the girls and boys.

The next lines contains nn number. The ithi_{th} number means the ithi_{th} node contains a girl or a boy. (00 means girl 11 means boy), The follow n1n-1 lines contains aa, bb, ww, means a edge connect atha_{th} node and bthb_{th} node, and the length of the edge is ww (1w100000001\leq w\leq 10000000).

Output

For every case, you should output Case #t: at first, without quotes. The tt is the case number starting from 11.

Then follows the answer, 1-1 meas you can't comlete it, and others means the minimum number of the times.

Samples

1
3 1
0 0 1
1 2 1
1 3 1
Case #1: 1

Resources

2013 ACM/ICPC Asia Regional Chengdu Online