F - Pond Skater Editorial /

Time Limit: 3 sec / Memory Limit: 1024 MB

配点 : 600600

問題文

アメンボのすぬけ君は南北 HH マス東西 WW マスの長方形の形をしたグリッド状の池に住んでいます。北から ii 番目、西から jj 番目のマスをマス (i,j)(i,j) とします。

いくつかのマスには蓮の葉が浮かんでおり、すぬけ君はそれらのマスには入ることができません。 cijc_{ij}@ のときマス (i,j)(i,j) に蓮の葉が浮かんでいること、.のときそうでないことを表します。

すぬけ君は一回水をかくことで東西南北のいずれかの方向に 11 マス以上 KK マス以下移動することができます。 移動の途中に蓮の葉のあるマスがあってはいけません。また、蓮の葉のあるマスや池の外に移動することもできません。

すぬけ君がマス (x1,y1)(x_1,y_1) から (x2,y2)(x_2,y_2) まで移動するのに最小で何回水をかく必要があるか求めてください。 (x1,y1)(x_1,y_1) から (x2,y2)(x_2,y_2) まで移動することができない場合、そのことを指摘してください。

制約

  • 1H,W,K1061 \leq H,W,K \leq 10^6
  • H×W106H \times W \leq 10^6
  • 1x1,x2H1 \leq x_1,x_2 \leq H
  • 1y1,y2W1 \leq y_1,y_2 \leq W
  • x1x2x_1 \neq x_2 または y1y2y_1 \neq y_2
  • ci,jc_{i,j}. または @
  • cx1,y1=c_{x_1,y_1} = .
  • cx2,y2=c_{x_2,y_2} = .
  • 入力される数はすべて整数である。

入力

入力は以下の形式で標準入力から与えられる。

HH WW KK
x1x_1 y1y_1 x2x_2 y2y_2
c1,1c1,2c_{1,1}c_{1,2} .... c1,Wc_{1,W}
c2,1c2,2c_{2,1}c_{2,2} .... c2,Wc_{2,W}
::
cH,1cH,2c_{H,1}c_{H,2} .... cH,Wc_{H,W}

出力

すぬけ君がマス (x1,y1)(x_1,y_1) から (x2,y2)(x_2,y_2) まで移動するのに必要な最小の水かきの回数を出力せよ。 (x1,y1)(x_1,y_1) から (x2,y2)(x_2,y_2) まで移動することができない場合、-1を出力せよ。


入力例 1Copy

Copy
3 5 2
3 2 3 4
.....
.@..@
..@..

出力例 1Copy

Copy
5

はじめ、すぬけ君はマス (3,2)(3,2) にいます。 以下のように 55 回水をかくことでマス (3,4)(3,4) まで移動することができます。

  • マス (3,2)(3,2) から西に 11 マス進み、マス (3,1)(3,1) に移動する。

  • マス (3,1)(3,1) から北に 22 マス進み、マス (1,1)(1,1) に移動する。

  • マス (1,1)(1,1) から東に 22 マス進み、マス (1,3)(1,3) に移動する。

  • マス (1,3)(1,3) から東に 11 マス進み、マス (1,4)(1,4) に移動する。

  • マス (1,4)(1,4) から南に 22 マス進み、マス (3,4)(3,4) に移動する。


入力例 2Copy

Copy
1 6 4
1 1 1 6
......

出力例 2Copy

Copy
2

入力例 3Copy

Copy
3 3 1
2 1 2 3
.@.
.@.
.@.

出力例 3Copy

Copy
-1

Score : 600600 points

Problem Statement

Snuke, a water strider, lives in a rectangular pond that can be seen as a grid with HH east-west rows and WW north-south columns. Let (i,j)(i,j) be the square at the ii-th row from the north and jj-th column from the west.

Some of the squares have a lotus leaf on it and cannot be entered. The square (i,j)(i,j) has a lotus leaf on it if cijc_{ij} is @, and it does not if cijc_{ij} is ..

In one stroke, Snuke can move between 11 and KK squares (inclusive) toward one of the four directions: north, east, south, and west. The move may not pass through a square with a lotus leaf. Moving to such a square or out of the pond is also forbidden.

Find the minimum number of strokes Snuke takes to travel from the square (x1,y1)(x_1,y_1) to (x2,y2)(x_2,y_2). If the travel from (x1,y1)(x_1,y_1) to (x2,y2)(x_2,y_2) is impossible, point out that fact.

Constraints

  • 1H,W,K1061 \leq H,W,K \leq 10^6
  • H×W106H \times W \leq 10^6
  • 1x1,x2H1 \leq x_1,x_2 \leq H
  • 1y1,y2W1 \leq y_1,y_2 \leq W
  • x1x2x_1 \neq x_2 or y1y2y_1 \neq y_2.
  • ci,jc_{i,j} is . or @.
  • cx1,y1=c_{x_1,y_1} = .
  • cx2,y2=c_{x_2,y_2} = .
  • All numbers in input are integers.

Input

Input is given from Standard Input in the following format:

HH WW KK
x1x_1 y1y_1 x2x_2 y2y_2
c1,1c1,2c_{1,1}c_{1,2} .... c1,Wc_{1,W}
c2,1c2,2c_{2,1}c_{2,2} .... c2,Wc_{2,W}
::
cH,1cH,2c_{H,1}c_{H,2} .... cH,Wc_{H,W}

Output

Print the minimum number of strokes Snuke takes to travel from the square (x1,y1)(x_1,y_1) to (x2,y2)(x_2,y_2), or print -1 if the travel is impossible.


Sample Input 1Copy

Copy
3 5 2
3 2 3 4
.....
.@..@
..@..

Sample Output 1Copy

Copy
5

Initially, Snuke is at the square (3,2)(3,2). He can reach the square (3,4)(3, 4) by making five strokes as follows:

  • From (3,2)(3, 2), go west one square to (3,1)(3, 1).

  • From (3,1)(3, 1), go north two squares to (1,1)(1, 1).

  • From (1,1)(1, 1), go east two squares to (1,3)(1, 3).

  • From (1,3)(1, 3), go east one square to (1,4)(1, 4).

  • From (1,4)(1, 4), go south two squares to (3,4)(3, 4).


Sample Input 2Copy

Copy
1 6 4
1 1 1 6
......

Sample Output 2Copy

Copy
2

Sample Input 3Copy

Copy
3 3 1
2 1 2 3
.@.
.@.
.@.

Sample Output 3Copy

Copy
-1


2025-04-26 (Sat)
06:23:33 +00:00