Hide

Ultimate Pipe Game

Pipe games are interesting and hard puzzle games. In these games, our mission is to connect the pipes to make the water flow in the pipeline from a source to a destination, without leaking out. Today we are playing a new generation of pipe game, the Ultimate Pipe Game.

In this game, we have a grid of $m$ rows and $n$ columns. Cells on the grid are either empty or blocked. The cell at row $i$ and column $j$ is denoted as cell $(i, j)$. We only put pipes on empty cells and each cell can contain only one pipe. There are $3$ kinds of pipes: curved pipes, horizontal pipes, and vertical pipes. Note that a curved pipe can be rotated as shown in the picture below, but we cannot rotate a horizontal pipe to make a vertical pipe or vice-versa.

\includegraphics[width=0.7\textwidth ]{F1.png}

By putting pipes on empty cells, water from a cell can travel to its adjacent cell if and only if the pipes in two cells are connected by their heads.

Our mission in this Ultimate Pipe Game is to place pipes on the empty cells with following requirements:

  • We need to put pipes on every empty cell and each empty cell must contain exactly one pipe.

  • We have to make sure water in the pipeline will not leak out. Starting from any empty cell with a pipe, assuming that we have water flows out from that pipe in one of the two directions, water can travel through the pipeline to other cells without leaking out and return to the starting cell. In this case, we call it a cycle pipeline.

  • We can have multiple disjoint cycle pipelines.

  • Putting a horizontal pipe and a vertical pipe at cell $(i, j)$ cost $h_{i,j}$ and $v_{i,j}$ coins, respectively. Putting a curved pipe is free.

\includegraphics[width=0.9\textwidth ]{F2.jpg}

Your task is to find a way, if one exists, to put pipes on empty cells to minimize the total cost (in terms of coins). You can assume that there are unlimited number of pipes.

\includegraphics[width=0.7\textwidth ]{F3.png}
\includegraphics[width=0.7\textwidth ]{F4.png}

Input

The input consists of several datasets. The first line of the input contains the number of datasets, which is a positive number and is not greater than $100$. The following lines describe the datasets.

Each dataset is described by the following lines:

  • First line contains two integers $m$ and $n$ $(2 \le m, n \le 20)$.

  • The next $m$ lines describe the grid where each line contains $n$ characters. The $j^\textrm {th}$ character at $i^\textrm {th}$ line denotes the state of cell $(i, j)$: “.” for an empty cell or # for a blocked cell.

  • In the next $m$ lines, each line contains $n$ integers denoting the cost of putting a horizontal pipe on a cell. The $j^\textrm {th}$ number on the $i^\textrm {th}$ line is an integer $h_{i,j}$ $(0 \le h_{i,j} \le 100)$ where $h_{i,j}$ is $0$ for a blocked cell.

  • In the last $m$ lines, each line contains $n$ integers denoting the cost of putting a vertical pipe on a cell. The $j^\textrm {th}$ number on the $i^\textrm {th}$ line is an integer $v_{i,j}$ $(0 \le v_{i,j} \le 100)$ where $v_{i,j}$ is $0$ for a blocked cell.

Output

For each dataset, output the result in the following format.

  • If you can find a way to put pipes on empty cells to fulfill the requirements, output “YES $y$” where $y$ is the minimum total number of coins we need to pay.

  • Otherwise, output “NO”.

Sample Input 1 Sample Output 1
3
4 4
##..
##..
..##
..##
0 0 1 2
0 0 3 0
1 2 0 0
2 3 0 0
0 0 1 2
0 0 3 0
1 2 0 0
2 3 0 0
3 4
...#
.#..
....
1 2 3 0
4 0 1 2
3 1 2 3
3 2 1 0
5 0 2 2
3 1 2 3
3 3
...
...
...
0 0 0
0 0 0
0 0 0
1 1 1
1 1 1
1 1 1
YES 0
YES 10
NO

Please log in to submit a solution to this problem

Log in