시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB42266.667%

문제

Among the most popular games in Binary casino is a game called “The Binary Generator”. It is played by multiple players and with a single coin. Each player first chooses a sequence of heads and tails of a given length. After that, players or the casino start flipping the coin and the winner is the player whose sequence first appears as a contiguous subsequence of the flip results.

You believe all sequences chosen by players are equally good and so the choice of the sequence does not matter. However, after losing all of your money, you became somewhat doubtful of that. Write a program to prove you wrong. For a given list of sequences of heads and tails of the same length, write the expected number of coin flips which have to be performed until one of the players’ chosen sequences appears as a contiguous subsequence in the flip sequence. The expected number of coin flips is the average length of a flip sequence over all possible flip sequences resulting in some player’s victory, where each flip sequence is weighted by its probability.

입력

The first line of input contains two integers W and B (1 ≤ W ≤ 10, 1 ≤ B ≤ 30), the number of players’ sequences and the length of players’ sequences, respectively. Next, W lines follow, each consisting of a sequence of B letters. Each letter is either “H” for heads or “T” for tails.

출력

Output a single number – the expected number of flips. The output will be considered correct if it differs by at most 0.1 from the correct answer.

예제 입력 1

1 1
H

예제 출력 1

2.0

예제 입력 2

2 3
HHT
THT

예제 출력 2

5.0

예제 입력 3

2 3
HHH
HHT

예제 출력 3

7.0