nyoj308-Substring(LCS(河南第四届省赛A题))

题目来源:http:///problem.php?pid=308

题意

把字符串颠倒之后,输出两个字符串最长公共子串(连续)。

思路

额,想着暴力。动态规划(。。。菜),中间过程记录下最大值。

代码

#include
#include
#include
#include
using namespace std;
typedef long long LL;
const int INF=0x3f3f3f3f;

char s[100],t[100];
int c[100][100];
int res,pos;
void deal()//LCS
{
    int len=strlen(s);
    res=0,pos=0;
    memset(c,0,sizeof(c));
    for(int i=1; i<=len; i++)
    {
        for(int j=1; j<=len; j++)
        {
            if(s[i-1]==t[j-1])
                c[i][j]=c[i-1][j-1]+1;
            if(c[i][j]>res)
            {
                res=c[i][j];
                pos=i;
            }
        }
    }
}

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        memset(s,0x00,sizeof(s));
        memset(t,0x00,sizeof(t));
        scanf("%s",s);
        int len=strlen(s);
        for(int i=0; i1];
        deal();
        for(int i=pos-res; iprintf("%c",s[i]);
        printf("\n");
    }
}

你可能感兴趣的:(ACM竞赛,【DP】--LCS&&LIS,【含有一定思考】,ACM的进程)