CF482C.Game with Strings
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You play the game with your friend. The description of this game is listed below.
Your friend creates n distinct strings of the same length m and tells you all the strings. Then he randomly chooses one of them. He chooses strings equiprobably, i.e. the probability of choosing each of the n strings equals . You want to guess which string was chosen by your friend.
In order to guess what string your friend has chosen, you are allowed to ask him questions. Each question has the following form: «What character stands on position pos in the string you have chosen?» A string is considered guessed when the answers to the given questions uniquely identify the string. After the string is guessed, you stop asking questions.
You do not have a particular strategy, so as each question you equiprobably ask about a position that hasn't been yet mentioned. Your task is to determine the expected number of questions needed to guess the string chosen by your friend.
输入格式
The first line contains a single integer n ( 1<=n<=50 ) — the number of strings your friend came up with.
The next n lines contain the strings that your friend has created. It is guaranteed that all the strings are distinct and only consist of large and small English letters. Besides, the lengths of all strings are the same and are between 1 to 20 inclusive.
输出格式
Print the single number — the expected value. Your answer will be considered correct if its absolute or relative error doesn't exceed 10−9 .
输入输出样例
输入#1
2 aab aac
输出#1
2.000000000000000
输入#2
3 aaA aBa Caa
输出#2
1.666666666666667
输入#3
3 aca vac wqq
输出#3
1.000000000000000
说明/提示
In the first sample the strings only differ in the character in the third position. So only the following situations are possible:
- you guess the string in one question. The event's probability is ;
- you guess the string in two questions. The event's probability is ⋅ = (as in this case the first question should ask about the position that is other than the third one);
- you guess the string in three questions. The event's probability is ⋅ ⋅ = ;
Thus, the expected value is equal to
In the second sample we need at most two questions as any pair of questions uniquely identifies the string. So the expected number of questions is .
In the third sample whatever position we ask about in the first question, we immediately identify the string.