`
java-mans
  • 浏览: 11435892 次
文章分类
社区版块
存档分类
最新评论

poj 1432 Decoding Morse Sequences

 
阅读更多

题目链接:http://poj.org/problem?id=1432

题目大意及思路:计算一段文摩斯码可能的译文种数,定义dp[i]为前i个摩斯码的种数,然后枚举最后一个单词的摩斯码长度,将所有可能加起来;要注意的是有些单词的摩斯码相同。

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<string>
#include<queue>
#include<algorithm>
#include<vector>
#include<stack>
#include<list>
#include<iostream>
#include<map>
using namespace std;
#define inf 0x3f3f3f3f
#define Max 110
int max(int a,int b)
{
	return a>b?a:b;
}
int min(int a,int b)
{
	return a<b?a:b;
}
string rec;
char s[10100],str[10100];
int dp[10100];
int len;
char cod[26][5]={
            ".-","-...","-.-.","-..",
            ".","..-.","--.","....",
            "..",".---","-.-",".-..",
            "--","-.","---",".--.",
            "--.-",".-.","...","-",
            "..-","...-",".--","-..-",
            "-.--","--.."
            };
map<string ,int>mp;
int main()
{
    int t,n,i,j,k;
    scanf("%d",&t);
   // getchar();
 //   cout<<cod[0];
    while(t--)
    {
        mp.clear();
        memset(dp,0,sizeof(dp));
       scanf("%s",s+1);
       len=strlen(s+1);
   //    printf("len %d\n",len);
       scanf("%d",&n);
       for(i=0;i<n;i++)
       {
            scanf("%s",str);
          //  int len=strlen(str);
            string tmp;
            for(j=0;str[j];j++)
                tmp+=cod[str[j]-'A'];
           // cout<<tmp<<endl;
            mp[tmp]++;
       }
       dp[0]=1;
       for(i=1;i<=len;i++)
            for(j=i-1;j>=i-81&&j>=0;j--)
            {
                if(dp[j]==0)
                    continue;
                char a[100];
                for(k=j+1;k<=i;k++)
                {
                    a[k-j-1]=s[k];
                }
                a[k-j-1]=0;

                  //  cout<<a<<endl;
                    dp[i]+=dp[j]*mp[a];
              //  printf("i %d dp %d\n",i,dp[i]);
            }
        printf("%d\n",dp[len]);
    }
}


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics