COCI 2009/2010, Contest #7

Task KRALJEVI

Mirko and Slavko are playing a chess like game. The game is played on a non-standard chess board sized R rows by C columns. Each player starts with some number of chess kings. In chess kings can move from their current field to any of the 8 neighbouring fields.

Player spread is defined as the complete sum of distances between all pairs of pieces of the given player. The distance between two pieces is the smallest number of moves required for both pieces to reach the same field. No actual moves are performed when calculating the distance and as such enemy pieces do not influence the result.

Mirko knows that the spread is a vital piece of strategic information and would like you to make him a program that will calculate both his and Slavko's spread.

Input

The first line of input contains two integers R and C (1 ≤ RC ≤ 1000), the number of rows and columns.

The next R lines contain C characters each. Character 'M' denotes Mirko's piece, 'S' Slavko's piece and '.' denotes an empty field.

There is at least one piece per player on the board. Otherwise the game would be over.

Output

In the first and only line of output you need to print exactly two integers. The first integers is the spread of Mirko's and the second Slavko's pieces.

Scoring

In test cases worth 20% of total points the number of pieces on the board will be less then or equal to 5000.

In test cases worth 60% of total points, R and C will be smaller than or equal to 300.

Sample Tests

Input

2 3
SMS
MMS

Output

3 5

Input

2 3
S.M
M..

Output

2 0

Input

4 5
M....
..S.M
SS..S
.M...

Output

10 13

All Submissions
Best Solutions


Point Value: 20 (partial)
Time Limit: 1.00s
Memory Limit: 64M
Added: Aug 13, 2013

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...