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 ww be a long DNA sequence and s1,s2,...,sms_{1},s_{2},...,s_{m} — collection of short DNA sequences. Let us say that the collection filters ww iff ww 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|w| the length of ww , let symbols of ww be numbered from 11 to w|w| . Then for each position ii in ww there exist pair of indices l,rl,r ( 1<=l<=i<=r<=w1<=l<=i<=r<=|w| ) such that the substring w[l ... r]w[l ... r] equals one of the elements s1,s2,...,sms_{1},s_{2},...,s_{m} 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 nn filtered by the collection si{s_{i}} .

Answer may appear very large, so output it modulo 10000000091000000009 .

输入格式

First line contains two integer numbers nn and mm ( 1<=n<=1000,1<=m<=101<=n<=1000,1<=m<=10 ) — the length of the string and the number of sequences in the collection correspondently.

Next mm lines contain the collection sequences sis_{i} , one per line. Each sis_{i} is a nonempty string of length not greater than 1010 . 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 10000000091000000009 ( 109+910^{9}+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).

首页