#P14860. [ICPC 2021 Yokohama R] Cancer DNA
[ICPC 2021 Yokohama R] Cancer DNA
题目描述
The Investigation Center for Potential Cancer (ICPC) found out patterns of a DNA sequence that cause cancer! We would like you to write a computer program that approximates the probability that a random DNA sequence matches one of the given patterns.
A DNA sequence can be represented by a string consisting of four letters, ‘A’, ‘G’, ‘C’, and ‘T’. A DNA pattern is a string over the same four letters plus ‘?’. We say that a DNA pattern matches a DNA sequence of the same length if each of the characters in the pattern is either ‘?’ or is the same as the character at the corresponding position in the DNA sequence. For example, a pattern “AC?” matches DNA sequences “ACA”, “ACG”, “ACC”, and “ACT”.
Your task is to write a program that, given a set of DNA patterns of the same length, computes the probability that a uniformly random DNA sequence of the same length matches any of the given patterns. A multiplicative error up to is permissible.
输入格式
The input consists of a single test case of the following format.
The first line of the input contains two positive integers and such that and hold. The next lines contain patterns . Each pattern is a string of length over ‘A’, ‘G’, ‘C’, ‘T’, and ‘?’.
输出格式
Let be a DNA sequence of length chosen uniformly at random. Let be the probability that matches at least one of . The output is a real number that approximates .
The output is judged to be correct if approximates within a multiplicative error of , i.e.,
should be represented either with or without exponent component. For example, can be represented as or .
3 1
AC?
0.0625
6 2
AC??A?
A??A?T
0.0302734375
30 1
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
8.673617379884035e-19
提示
In the first sample, there are DNA sequences of length 3. There are 4 DNA sequences, “ACA”, “ACG”, “ACC”, and “ACT”, that match the pattern “AC?”. Thus, the probability is . Any real number between and is accepted as a correct output.
As in the third sample, the probability can be a small real number. Note that “0” is not a correct output, as is less than of the precise probability.