码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces 653B B. Bear and Compressing(dfs)

时间:2016-03-20 00:13:11      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:

题目链接:

B. Bear and Compressing

 

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Limak is a little polar bear. Polar bears hate long strings and thus they like to compress them. You should also know that Limak is so young that he knows only first six letters of the English alphabet: ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘ and ‘f‘.

You are given a set of q possible operations. Limak can perform them in any order, any operation may be applied any number of times. The i-th operation is described by a string ai of length two and a string bi of length one. No two of q possible operations have the same string ai.

When Limak has a string s he can perform the i-th operation on s if the first two letters of s match a two-letter string ai. Performing the i-th operation removes first two letters of s and inserts there a string bi. See the notes section for further clarification.

You may note that performing an operation decreases the length of a string s exactly by 1. Also, for some sets of operations there may be a string that cannot be compressed any further, because the first two letters don‘t match any ai.

Limak wants to start with a string of length n and perform n - 1 operations to finally get a one-letter string "a". In how many ways can he choose the starting string to be able to get "a"? Remember that Limak can use only letters he knows.

Input

The first line contains two integers n and q (2 ≤ n ≤ 6, 1 ≤ q ≤ 36) — the length of the initial string and the number of available operations.

The next q lines describe the possible operations. The i-th of them contains two strings ai and bi (|ai| = 2, |bi| = 1). It‘s guaranteed thatai ≠ aj for i ≠ j and that all ai and bi consist of only first six lowercase English letters.

Output

Print the number of strings of length n that Limak will be able to transform to string "a" by applying only operations given in the input.

Examples
input
3 5
ab a
cc c
ca a
ee c
ff d
output
4
input
2 8
af e
dc d
cc f
bc b
da b
eb a
bb b
ff c
output
1
input
6 2
bb a
ba a
output
0
Note

In the first sample, we count initial strings of length 3 from which Limak can get a required string "a". There are 4 such strings: "abb", "cab", "cca", "eea". The first one Limak can compress using operation 1 two times (changing "ab" to a single "a"). The first operation would change "abb" to "ab" and the second operation would change "ab" to "a".

Other three strings may be compressed as follows:

  • "cab" 技术分享 "ab" 技术分享 "a"
  • "cca" 技术分享 "ca" 技术分享 "a"
  • "eea" 技术分享 "ca" 技术分享 "a"

In the second sample, the only correct initial string is "eb" because it can be immediately compressed to "a".

题意:给一对string,前面两个字符匹配的话可以吧前边2个字符去掉换成这对string后面一个字符,问最后能得到a的长度为n的字符串有多少个;

思路:从a往前找,反过来操作;

AC代码:

#include <bits/stdc++.h>
using namespace std;
int a[8],n,q,ans=0;
char s[40][7];
int dfs(char x,int num)
{
    if(num>=n-1){ans+=a[x-a];return 0;}
    for(int i=0;i<q;i++)
    {
       if(s[i][4]==x)
       {
           char y=s[i][1];
            dfs(y,num+1);
       }
    }
}
int main()
{
    scanf("%d%d",&n,&q);
    for(int i=0;i<q;i++)
    {
        scanf("%s",s[i]+1);
        scanf("%s",s[i]+4);
        a[s[i][4]-a]++;
    }
    dfs(a,1);
    cout<<ans<<endl;

    return 0;
}

 

 

codeforces 653B B. Bear and Compressing(dfs)

标签:

原文地址:http://www.cnblogs.com/zhangchengc919/p/5296650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!