You are still a farmer. Now that you are tired of growing vegetables, you have decided to start growing fruits. Your farm has $$$N \cdot M$$$ fields arranged in $$$N$$$ rows numbered from $$$1$$$ to $$$N$$$ and $$$M$$$ columns numbered from $$$1$$$ to $$$M$$$. The field at the $$$i$$$-th row and $$$j$$$-th column is denoted by $$$(i, j)$$$. Your farm grows $$$K$$$ distinct fruits, numbered from $$$1$$$ to $$$K$$$. Each field $$$(i, j)$$$ grows a single plant that bears the fruit $$$A_{i,j}$$$.
Your farm is home to many bees. A bee can move from a field $$$(i, j)$$$ to one of the fields $$$(i-1, j)$$$, $$$(i+1, j)$$$, $$$(i, j-1)$$$, or $$$(i, j+1)$$$ in one second (assuming that field exists). Bees carry pollen from one plant to other, which is critical for the production of fruits. Whenever a bee travels from some plant $$$(x_1, y_1)$$$ to some other plant $$$(x_2, y_2)$$$, it chooses a route such that it takes the smallest amount of time possible.
In order to study the effect of pollination in your farm as you choose which plants to grow, you would like to perform $$$Q$$$ operations numbered from $$$1$$$ from $$$Q$$$. Each operation is either type 1 or type 2.
Each operation $$$q$$$ (such that $$$1 \leq q \leq Q$$$) contains a number $$$T$$$, which specifies the type of the operation.
Note that just before an operation of type 1, the field ($$$I, J$$$) could have been producing fruit $$$X$$$. That is, it is possible for no change to occur during an operation of type 1.
The first line contains three space-separated integers $$$N$$$, $$$M$$$ and $$$K$$$, the number of rows in the farm, the number of columns in the farm, and the different fruits that can grow on the farm.
Each of the next $$$N$$$ lines contain $$$M$$$ space separated integers. The $$$i$$$-th of these lines contains $$$A_{i,1}, A_{i,2}, \cdots, A_{i,M}$$$, denoting the fruits growing at fields ($$$i, 1$$$), ($$$i, 2$$$), $$$\cdots$$$ ($$$i, M$$$).
The next line contains a single integer $$$Q$$$, denoting the number of operation.
The next $$$Q$$$ lines contain information about the operations. The $$$q$$$-th line describes the $$$q$$$-th operation. The first number in the line will be $$$T$$$, the type of the $$$q$$$-th operation.
For each operation of type 2, output a single integer, the answer to the operation, on a new line.
The test data for this problem is divided into multiple subtasks. In order to pass a subtask, your submitted program must solve every test case within that subtask correctly and within the time and memory limits.
You will be awarded the points allocated to a subtask if at least one submission you make during the contest passes that subtask. You do not need to combine your solutions for multiple subtasks into a single submission.
Please keep in mind that the subtasks are not necessarily arranged in increasing order of difficulty. We encourage you to try as many subtasks as possible.
Constraints
In all test data, it is guaranteed that:
Subtasks
5 5 97 1 5 5 42 4 6 2 87 1 3 5 69 4 4 8 21 3 6 9 312 1 3
7
4 3 128 9 13 10 122 5 114 6 772 1 62 6 92 2 111 3 3 112 5 82 8 22 2 11
4 3 2 3 2 2
1 9 42 1 1 1 3 4 2 3 362 1 22 3 22 1 32 2 42 4 12 3 4
5 8 7 5 4 3
1 13 76 4 3 4 5 1 7 7 1 6 7 2 452 7 32 3 41 1 2 32 4 72 4 3
8 10 7 11
7 7 209 17 15 17 18 20 117 12 13 18 12 16 183 18 6 8 5 10 167 11 5 17 2 2 18 11 4 12 3 2 1219 2 7 13 3 6 146 8 8 15 9 20 1762 17 82 1 122 6 142 17 12 18 82 2 8
8 7 7 8 10 7
Example 1
There is only one operation of type 2, with $$$U = 1$$$ and $$$V = 3$$$. The fields containing fruit $$$1$$$ are $$$(1, 2)$$$, $$$(3, 2)$$$, $$$(5, 1)$$$. Similarly, the fields containing fruit $$$3$$$ are $$$(3, 3)$$$, $$$(5, 2)$$$, $$$(5, 5)$$$.
In order to maximize the time taken by the bee, it is optimal to choose the fields $$$(1, 2)$$$ and $$$(5, 5)$$$. One possibility for the quickest path that a bee can take between these fields is: $$$(1, 2) \rightarrow (2, 2) \rightarrow (3, 2) \rightarrow (4, 2) \rightarrow (4, 3) \rightarrow (4, 4) \rightarrow (4, 5) \rightarrow (5, 5)$$$. This path takes $$$7$$$ seconds, so the answer for this operation is $$$7$$$.
It is not possible to find a quicker path between $$$(1, 2)$$$ and $$$(5, 5)$$$. Further, if any other pair of fields is chosen, the quickest path between that pair will take time less than or equal to $$$7$$$ seconds.
Example 1 is valid for subtasks 1, 2, 3, 4, 7, 8 and 9.
Example 2 is valid for subtask 9.
Example 3 is valid for subtasks 5, 6, 7, 8 and 9.
Example 4 is valid for subtasks 6 and 9.
Example 5 is valid for subtasks 8 and 9.