#P89C. Chip Play

    ID: 6665 远端评测题 4000ms 256MiB 尝试: 0 已通过: 0 难度: 8 上传者: 标签>brute forcedata structuresimplementation*2300

Chip Play

Description

Let's consider the following game. We have a rectangular field n × m in size. Some squares of the field contain chips.

Each chip has an arrow painted on it. Thus, each chip on the field points in one of the following directions: up, down, left or right.

The player may choose a chip and make a move with it.

The move is the following sequence of actions. The chosen chip is marked as the current one. After that the player checks whether there are more chips in the same row (or in the same column) with the current one that are pointed by the arrow on the current chip. If there is at least one chip then the closest of them is marked as the new current chip and the former current chip is removed from the field. After that the check is repeated. This process can be repeated several times. If a new chip is not found, then the current chip is removed from the field and the player's move ends.

By the end of a move the player receives several points equal to the number of the deleted chips.

By the given initial chip arrangement determine the maximum number of points that a player can receive during one move. Also determine the number of such moves.

The first line contains two integers n and m (1 ≤ n, m, n × m ≤ 5000). Then follow n lines containing m characters each — that is the game field description. "." means that this square is empty. "L", "R", "U", "D" mean that this square contains a chip and an arrow on it says left, right, up or down correspondingly.

It is guaranteed that a field has at least one chip.

Print two numbers — the maximal number of points a player can get after a move and the number of moves that allow receiving this maximum number of points.

Input

The first line contains two integers n and m (1 ≤ n, m, n × m ≤ 5000). Then follow n lines containing m characters each — that is the game field description. "." means that this square is empty. "L", "R", "U", "D" mean that this square contains a chip and an arrow on it says left, right, up or down correspondingly.

It is guaranteed that a field has at least one chip.

Output

Print two numbers — the maximal number of points a player can get after a move and the number of moves that allow receiving this maximum number of points.

Samples

4 4
DRLD
U.UL
.UUR
RDDL

10 1
3 5
.D...
RRRLL
.U...

6 2

Note

In the first sample the maximum number of points is earned by the chip in the position (3, 3). You can see its progress at the following picture:

All other chips earn fewer points.