Home


Contest: Task: Related: TaskC TaskE

Score : $800$ points

Problem Statement

There is a pond with a rectangular shape. The pond is divided into a grid with $H$ rows and $W$ columns of squares. We will denote the square at the $i$-th row from the top and $j$-th column from the left by $(i,\ j)$.

Some of the squares in the pond contains a lotus leaf floating on the water. On one of those leaves, $S$, there is a frog trying to get to another leaf $T$. The state of square $(i,\ j)$ is given to you by a character $a_{ij}$, as follows:

  • . : A square without a leaf.
  • o : A square with a leaf floating on the water.
  • S : A square with the leaf $S$.
  • T : A square with the leaf $T$.

The frog will repeatedly perform the following action to get to the leaf $T$: "jump to a leaf that is in the same row or the same column as the leaf where the frog is currently located."

Snuke is trying to remove some of the leaves, other than $S$ and $T$, so that the frog cannot get to the leaf $T$. Determine whether this objective is achievable. If it is achievable, find the minimum necessary number of leaves to remove.

Constraints

  • $2 ≤ H, W ≤ 100$
  • $a_{ij}$ is ., o, S or T.
  • There is exactly one S among $a_{ij}$.
  • There is exactly one T among $a_{ij}$.

Input

Input is given from Standard Input in the following format:

$H$ $W$
$a_{11}$ $...$ $a_{1W}$
$:$
$a_{H1}$ $...$ $a_{HW}$

Output

If the objective is achievable, print the minimum necessary number of leaves to remove. Otherwise, print -1 instead.


Sample Input 1

3 3
S.o
.o.
o.T

Sample Output 1

2

Remove the upper-right and lower-left leaves.


Sample Input 2

3 4
S...
.oo.
...T

Sample Output 2

0

Sample Input 3

4 3
.S.
.o.
.o.
.T.

Sample Output 3

-1

Sample Input 4

10 10
.o...o..o.
....o.....
....oo.oo.
..oooo..o.
....oo....
..o..o....
o..o....So
o....T....
....o.....
........oo

Sample Output 4

5