Avin has a string. He would like to uniform-randomly select four characters (selecting the same character is allowed) from it. You are asked to calculate the probability of the four characters being ”avin” in order.
The first line contains n (1 ≤ n ≤ 100), the length of the string. The second line contains the string. To simplify the problem, the characters of the string are from ’a’, ’v’, ’i’, ’n’.
Print the reduced fraction (the greatest common divisor of the numerator and denominator is 1), representing the probability. If the answer is 0, you should output “0/1”.
1 | 4 |
1 | 1/256 |
Because of selecting the same character is allowed, so the probability of one character is
$$
P_{a_i}=\frac{1}{a.length}
$$
And if there are more than one ‘a’ or ‘v’ or so on, like n ‘a’, the probability is
$$
P_{‘a’}=\frac{n}{a.length}
$$
1 |
|