시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB649930.000%

문제

The floor of a store is a rectangle divided into n x m square fields. Two fields are adjacent, if they have a common side. A parcel lays on one of the fields. Each of the remaining fields is either empty, or occupied by a case, which is too heavy to be moved by a store-keeper. The store-keeper has to shift the parcel from the starting field P to the final field K. He can move on the empty fields, going from the field on which he stands to a chosen adjacent field. When the store-keeper stays on a field adjacent to the one with the parcel he may push the parcel so that if moves to the next field (i.e. the field on the other side of the parcel), assuming condition that there are no cases on this field.

Write a program, which:

  • reads from the standard input a store scheme, a starting position of the store-keeper and a final position of the parcel,
  • computes minimal number of the parcel shifts through borders of fields, which are necessary to put the parcel in the final position or decides that it is impossible to put the parcel there,
  • writes the result to the standard output.

입력

In the first line of the standard input two positive integers separated by a single space, n,m ≤ 100, are written. These are dimensions of the store. In each of the following n lines there appears one -letter word made of letters S, M, P, K, w. A letter on i-th position in j-th word denotes a type of the field with coordinates (i,j) and its meaning is following:

  • S - case,
  • M - starting position of the store-keeper,
  • P - starting position of the parcel,
  • K - final position of the parcel,
  • w - empty field.

Each letter M, P and K appears in the input exactly once.

출력

Your program should write to the standard output:

  • exactly one word NIE (means "no" in Polish), if the parcel cannot be put on the target field,
  • exactly one integer, equal to the minimal number of the parcel shifts through borders of the fields, necessary to put a parcel on a final position, if it is possible to put the parcel there.

예제 입력 1

10 12
SSSSSSSSSSSS
SwwwwwwwSSSS
SwSSSSwwSSSS
SwSSSSwwSKSS
SwSSSSwwSwSS
SwwwwwPwwwww
SSSSSSSwSwSw
SSSSSSMwSwww
SSSSSSSSSSSS
SSSSSSSSSSSS

예제 출력 1

7

출처

Olympiad > Polish Olympiad in Informatics > POI 1998/1999 > Stage 3 2번

  • 데이터를 추가한 사람: jh05013