시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB24161568.182%

문제

One of the reasons that home foreclosures have had such a huge impact on the economy is that various financial institutions invented mortgage-backed derivatives. Essentially, the right to the mortgage payments was packaged as an investment, i.e., sold to other investors in small chunks. These chunks might then be mixed with other investments, and repackaged and sold further. Thus, you have all kinds of derivatives whose real worth depends on mortgages hard to trace2. If you find out how the basic “building blocks” upon which all the derivatives rely are changing in value, it might not be at all obvious to find out what your portfolio is really worth now. You might have to track it through a chain of derivatives.

Here is how we will model this. You have some basic investments, such as mortgages. For each of those, we assume that one unit was worth \$1 before, and we will tell you how much it is worth now. Then, we have derivatives. Each derivative will be composed of one or more basic investments or other derivatives. You will get a list of other investments, together with the percentage that they contribute to the derivative (those percentages will add up, of course). We will ensure that each derivative will only contain basic investments, or derivatives with a lower number. In particular, there will be no cycles. Finally, we will give you the percentages of investments in your portfolio. Your goal is to calculate how much one unit of your portfolio (which was initially worth \$1) is worth now.

2This description is certainly an oversimplification. It’s as best as we understand what is happening. In fact, another reason that the economy is not doing so well is that very few people actually understood how these derivatives work.

입력

The first line contains the number K of data sets. This is followed by K data sets, each of the following form:

The first line of each data set contains two integer numbers B,D, the number of basic investments (1 ≤ B ≤ 100) and the number of derivatives (0 ≤ D ≤ 100). We will number the basic ones 1,... ,B, and the derivatives B + 1,... ,B + D. This is followed by a line with B non-negative floating point numbers, the current values of one unit of each of the basic investments in order.

Next will be D lines. The dth line will consist of B + d − 1 non-negative floating point numbers, describing the percentage of investment B +d that is made up of investments 1,... ,B +d−1. These numbers will always add up to 1. No derivative ever contains parts of a derivative with a higher number.

Finally, there will be one more line with B + D non-negative floating point numbers (adding up to 1). This line tells you what percentage of your portfolio is made up of each of the investments.

출력

For each data set, output “Data Set x:” on a line by itself, where x is its number. On the next line, output the current value of one unit of your portfolio, rounded to two decimals. Each data set should be followed by one empty line.

예제 입력 1

1
3 4
0.01 1.1 0.4
0.5 0.25 0.25
0.9 0 0 0.1
0 0 0 0.5 0.5
0 0.5 0 0 0.3 0.2
0 0 0.2 0.2 0.2 0.2 0.2

예제 출력 1

Data Set 1:
0.33