#Lutece0203. Islands

Islands

Migrated from Lutece 203 Islands

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

Deep in the Carribean, there is an island even stranger than the Monkey Island, dwelled by Horatio Torquemada Marley. Not only it has a rectangular shape, but is also divided into an n×mn\times m grid. Each grid field has a certain height. Unfortunately, the sea level started to raise and in year ii, the level is ii meters. Another strange feature of the island is that it is made of sponge, and the water can freely flow through it. Thus, a grid field whose height is at most the current sea level is considered flooded.Adjacent unflooded fields (i.e., sharing common edge) create unflooded areas. Sailors are interested in the number of unflooded areas in a given year.

An example of a 4×54\times 5 island is given below. Numbers denote the heights of respective fields in meters.Unflooded fields are darker; there are two unflooded areas in the first year and three areas in the second year.

.

Input

Multiple Test Cases

The input contains several test cases. The first line of the input contains a positive integer Z20Z\leq 20,denoting the number of test cases. Then ZZ test cases follow, each conforming to the format described in section Single Instance Input. For each test case, your program has to write an output conforming to the format described in section Single Instance Output.

Single Instance Input

The first line contains two numbers nn and mm separated by a single space, the dimensions of the island, where 1n,m10001\leq n,m\leq 1000. Next nn lines contain mm integers from the range [1,109][1, 10^9] separated by single spaces, denoting the heights of the respective fields. Next line contains an integer TT (1T1051\leq T\leq 10^5). The last line contains TT integers tjt_j , separated by single spaces, such that 0t1t2tT1090\leq t_1\leq t_2\leq\cdots\leq t_T\leq 10^9

Output

Single Instance Output

Your program should output a single line consisting of TT numbers rjr_j , where rjr_j is the number of unflooded areas in year tjt_j . After every number ,you must output a single space!

Samples

1
4 5
1 2 3 3 1
1 3 2 2 1
2 1 3 4 3
1 2 2 2 2
5
1 2 3 4 5
2 3 1 0 0

Resources

Central European Programming Contest 2009