2013多校联合8 String (hdu 4681)

http://acm.hdu.edu.cn/showproblem.php?pid=4681


String

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 257    Accepted Submission(s): 103


Problem Description
Given 3 strings A, B, C, find the longest string D which satisfy the following rules:
a) D is the subsequence of A
b) D is the subsequence of B
c) C is the substring of D
Substring here means a consecutive subsequnce.
You need to output the length of D.
 

Input
The first line of the input contains an integer T(T = 20) which means the number of test cases.
For each test case, the first line only contains string A, the second line only contains string B, and the third only contains string C.
The length of each string will not exceed 1000, and string C should always be the subsequence of string A and string B.
All the letters in each string are in lowercase.
 

Output
For each test case, output Case #a: b. Here a means the number of case, and b means the length of D.
 


算是本次比赛的签到题吧。

首先枚举C 在A 和B 的起始位置,要使A 和B 的公共子序列尽量大,那么C 在A 和B 的占用长度肯定越少越好。所以就分成两个问题:
1. 对A,B 的任意起始位置,求出最近的包含C 的结束位置。先记录一个数组A[i][j](0 i < lenA; 0 j < 26) 保存在i 位置后跟i 最近的字符j 的距离。这个数组可以O(N2) 暴力枚举出来。然后对于每个起始位置i,按C从左往右寻找距离当前位置最近的相应字符即可。


2. 对于任意A,B 的起始位置,求出A,B 在起始位置之前的最长公共子序列,用同样的方法求出与起始位置相应的结束位置以后的最长公共子序列。只需定义dp[i][j] 代表A 的i 位置下B 的j 位置下的最长公共子序列长度。复杂度为O(lenA lenB)。上面两个问题都预处理后每次查询为O(1)。所以总复杂度为O(N2).


#include <iostream>
#include <stdio.h>
#include <string.h>
#define ll long long
#define maxn 1010
using namespace std;
int dp[maxn][maxn][2];
int po[2][maxn];
char A[maxn],B[maxn],C[maxn];
void init(int la,int lb)
{
       int i,j;
       for(i=0;i<=la+1;i++)
       {
           for(j=0;j<=lb+1;j++)
           dp[i][j][0]=dp[i][j][1]=0;
           po[0][i]=0;
       }
       for(i=0;i<=lb+1;i++)
       po[1][i]=0;
}
int main()
{
   // freopen("dd.txt","r",stdin);
   int ncase,T=0;
   scanf("%d",&ncase);
   while(ncase--)
   {
       printf("Case #%d: ",++T);
       scanf("%s%s%s",A+1,B+1,C+1);
       int la=strlen(A+1),lb=strlen(B+1),lc=strlen(C+1);
       int i,j;
       init(la,lb);
       for(i=1;i<=la;i++)
       {
           for(j=1;j<=lb;j++)
           {
               if(A[i]==B[j])
               dp[i][j][0]=max(dp[i-1][j-1][0]+1,max(dp[i][j-1][0],dp[i-1][j][0]));
               else
               {
                   dp[i][j][0]=max(dp[i][j-1][0],dp[i-1][j][0]);
               }
           }
       }
       for(i=la;i>=1;i--)
       {
           for(j=lb;j>=1;j--)
           {
               if(A[i]==B[j])
               dp[i][j][1]=max(dp[i+1][j+1][1]+1,max(dp[i][j+1][1],dp[i+1][j][1]));
               else
               {
                   dp[i][j][1]=max(dp[i][j+1][1],dp[i+1][j][1]);
               }
           }
       }
       for(i=1;i<=la;i++)
       {
           if(A[i]!=C[1])
           continue;
           if(lc==1)
           {
               po[0][i]=i;
               continue;
           }
           int num=2,tru=0;
           for(int j=i+1;j<=la;j++)
           {
               if(A[j]==C[num])
               {
                   num++;
               }
               if(num>lc)
               {
                   po[0][i]=j;
                   tru=1;
                   break;
               }

           }
           if(!tru)
           break;
       }
       for(i=1;i<=lb;i++)
       {
           if(B[i]!=C[1])
           continue;
           if(lc==1)
           {
               po[1][i]=i;
               continue;
           }
           int num=2,tru=0;
           for(int j=i+1;j<=lb;j++)
           {
               if(B[j]==C[num])
               {
                   num++;
               }
               if(num>lc)
               {
                   po[1][i]=j;
                   tru=1;
                   break;
               }

           }
           if(!tru)
           break;
       }
       int ans=0;
       for(i=1;i<=la;i++)
       {
           if(po[0][i]!=0)
           {
               for(j=1;j<=lb;j++)
               {
                   if(po[1][j]!=0)
                   {

                       int ii=po[0][i],jj=po[1][j];
                       ans=max(ans,dp[i-1][j-1][0]+dp[ii+1][jj+1][1]);
                   }
               }
           }
       }
       printf("%d\n",ans+lc);
   }
    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值