#Lutece0390. Bathroom

Bathroom

Migrated from Lutece 390 Bathroom

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

JiangAn's bathroom is divided into NN (1N501\leq N\leq 50) rooms labeled from 11 to NN. And there are some compartments in each room. If the compartment is available, it will be labeled with a number. Otherwise it will be labeled with XX. Each number of the compartment in one room is uniqueness.

The compartments in one room are arranged only in the shape of U (Such as the room 11 and room 22 in sample) or II (for example the sample of room 33). If a student wants to have a shower, he should swipe his card on the machine firstly. In order to facilitate your understanding, we would name this machine with A. The machine A will assign an available compartment for him randomly. And this compartment is marked as in use at the same time.

When he finished his shower, he should swipe his card again on machine B. The machine B will calculate the cost and this compartment is marked as available again. As we know, many people don't like the compartments in corners, (Such as No.0101, No.0505, No.0808 and No.1212 compartments in room 11, No.1515, No.1717, No.2020 compartments in room 22, And No.0101, No.0505, No.0606, No.1010 compartments in room 33) At least I don't. zsasuke doesn't like the compartments in corners too. And he also doesn't like the compartment whose the room number connecting the compartment number is a prime number. (Such as room 11 No.0101 compartment, 101101 is a prime number).

Every time zsasuke is assigned to a compartment he doesn't like, he will immediately swipe his card on machine B to cancel this allocation, then swipe his card on machine A again. He won't stop this until he is assigned to a satisfactory compartment. (What a selfish person! Students in queue after him must curse him...) But sometimes, it may take many times to get a satisfactory compartment. Recently, our clever zsasuke think of a new idea that he can take many cards to the bathroom. (We assumed that he borrowed enough cards from his schoolmates, what a selfish person!) If his first card is assigned to a unsatisfactory compartment, he will immediately swipe the second card on machine A to get a new compartment (Do not need to cancel previous assigning), until the compartment he got is satisfactory.

zsasuke wants to know how much the new method better than the old one. So can you do him a favor, What is expecting number of times zsasuke needs to swiping his card(s) on machine A to get a satisfactory compartment for the two methods respectively?

Input

The first line of the input is an integer TT which stands for the number of test cases.

For each test case, the first line is an integer NN and NN lines follow which stands for the information of each room.

For each room, the first line is an integer LL, indicating that this room has LL lines. The following LL lines stand for the map of the room and each line has at most 600600 chars. We guarantee the arrangement of compartments in the room strictly correspond with the description above.

The shape of every compartment is strictly as follows:

----
|##|
----

The ## is either a number of exactly 22 digits (leading zeros may appeared) or XX. Otherwise it is not a compartment. Here is sad news that zsasuke's teammate, onmylove has used this map paper as scratch paper. So on the map there may appear some other redundant chars. But fortunately, the redundant chars will not cover the origin compartments, or make up any new compartments. After the description of room there is a line contains an integer M which stands for how many people taking a shower when zsasuke come to the bathroom. And following MM lines, each line contains two integers XX and YY, which stands for the No.YY compartment in room XX is used now.

Output

For each test case, output one line contain two floating-point numbers (rounded to 66 digits after decimal point), which stands for the expecting number of times zsasuke needs for old and new methods respectively, separated by a space. If there is no usable compartment, output a line with No available room!.

Samples

1
3
11
----     ----
|01|     |12|
----     ----
|02|     |11|
----     ----
|03|     |10|
----     ----
|04|     |09|
-------------
|05|06|07|08|
-------------
9
----  ----
|XX|  |20|
----  ----
|13|  |19|
----  ----
|14|  |18|
----------
|15|16|17|
----------
11
----  ---- :)
|01|  |10| Orz
----01---- =.=||
|02|==|09|
----- ---- ---
|03|04|08| |11|
---------- ---
|04|  |07|
----  ----
|05|  |06|
----  ----
5
1 2
1 3
2 13
3 02
3 09
2.272727 2.166667

Resources

10th SCU Programming Contest Final