CF86C.Genetic engineering
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
"Multidimensional spaces are completely out of style these days, unlike genetics problems" — thought physicist Woll and changed his subject of study to bioinformatics. Analysing results of sequencing he faced the following problem concerning DNA sequences. We will further think of a DNA sequence as an arbitrary string of uppercase letters "A", "C", "G" and "T" (of course, this is a simplified interpretation).
Let w be a long DNA sequence and s1,s2,...,sm — collection of short DNA sequences. Let us say that the collection filters w iff w can be covered with the sequences from the collection. Certainly, substrings corresponding to the different positions of the string may intersect or even cover each other. More formally: denote by ∣w∣ the length of w , let symbols of w be numbered from 1 to ∣w∣ . Then for each position i in w there exist pair of indices l,r ( 1<=l<=i<=r<=∣w∣ ) such that the substring w[l ... r] equals one of the elements s1,s2,...,sm of the collection.
Woll wants to calculate the number of DNA sequences of a given length filtered by a given collection, but he doesn't know how to deal with it. Help him! Your task is to find the number of different DNA sequences of length n filtered by the collection si .
Answer may appear very large, so output it modulo 1000000009 .
输入格式
First line contains two integer numbers n and m ( 1<=n<=1000,1<=m<=10 ) — the length of the string and the number of sequences in the collection correspondently.
Next m lines contain the collection sequences si , one per line. Each si is a nonempty string of length not greater than 10 . All the strings consist of uppercase letters "A", "C", "G", "T". The collection may contain identical strings.
输出格式
Output should contain a single integer — the number of strings filtered by the collection modulo 1000000009 ( 109+9 ).
输入输出样例
输入#1
2 1 A
输出#1
1
输入#2
6 2 CAT TACT
输出#2
2
说明/提示
In the first sample, a string has to be filtered by "A". Clearly, there is only one such string: "AA".
In the second sample, there exist exactly two different strings satisfying the condition (see the pictures below).