100 #ABC089D. [ABC089D] Practical Skill Test

[ABC089D] Practical Skill Test

Score : 400400 points

Problem Statement

We have a grid with HH rows and WW columns. The square at the ii-th row and the jj-th column will be called Square (i,j)(i,j).

The integers from 11 through H×WH \times W are written throughout the grid, and the integer written in Square (i,j)(i,j) is Ai,jA_{i,j}.

You, a magical girl, can teleport a piece placed on Square (i,j)(i,j) to Square (x,y)(x,y) by consuming xi+yj|x-i|+|y-j| magic points.

You now have to take QQ practical tests of your ability as a magical girl.

The ii-th test will be conducted as follows:

  • Initially, a piece is placed on the square where the integer LiL_i is written.
  • Let xx be the integer written in the square occupied by the piece. Repeatedly move the piece to the square where the integer x+Dx+D is written, as long as xx is not RiR_i. The test ends when x=Rix=R_i.
  • Here, it is guaranteed that RiLiR_i-L_i is a multiple of DD.

For each test, find the sum of magic points consumed during that test.

Constraints

  • 1H,W3001 \leq H,W \leq 300
  • 1DH×W1 \leq D \leq H \times W
  • 1Ai,jH×W1 \leq A_{i,j} \leq H \times W
  • Ai,jAx,y((i,j)(x,y))A_{i,j} \neq A_{x,y} ((i,j) \neq (x,y))
  • 1Q1051 \leq Q \leq 10^5
  • 1LiRiH×W1 \leq L_i \leq R_i \leq H \times W
  • (RiLi)(R_i-L_i) is a multiple of DD.

Input

Input is given from Standard Input in the following format:

HH WW DD

A1,1A_{1,1} A1,2A_{1,2} ...... A1,WA_{1,W}

::

AH,1A_{H,1} AH,2A_{H,2} ...... AH,WA_{H,W}

QQ

L1L_1 R1R_1

::

LQL_Q RQR_Q

Output

For each test, print the sum of magic points consumed during that test.

Output should be in the order the tests are conducted.

3 3 2
1 4 3
2 5 7
8 9 6
1
4 8
5
  • 44 is written in Square (1,2)(1,2).
  • 66 is written in Square (3,3)(3,3).
  • 88 is written in Square (3,1)(3,1).

Thus, the sum of magic points consumed during the first test is (31+32)+(33+13)=5(|3-1|+|3-2|)+(|3-3|+|1-3|)=5.

4 2 3
3 7
1 4
5 2
6 8
2
2 2
2 2
0
0

Note that there may be a test where the piece is not moved at all, and there may be multiple identical tests.

5 5 4
13 25 7 15 17
16 22 20 2 9
14 11 12 1 19
10 6 23 8 18
3 21 5 24 4
3
13 13
2 10
13 13
0
5
0