Common Subsequence
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 10295 Accepted Submission(s): 4237
The program input is from a text file. Each data set in the file contains two strings representing the given sequences. The sequences are separated by any number of white spaces. The input data are correct. For each set of data the program prints on the standard output the length of the maximum-length common subsequence from the beginning of a separate line.
abcfbc abfcab programming contest abcd mnp
4 2 0
#include<stdio.h>
#include<string.h>
main()
{
int a[501][501]={0},i,j,m,n;
char ch1[501],ch2[501];
while(scanf("%s%s",ch1,ch2)!=EOF)
{
m=strlen(ch1);
n=strlen(ch2);
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
if(ch1[i]==ch2[j]) a[i+1][j+1]=a[i][j]+1;
else if(a[i][j+1]>=a[i+1][j]) a[i+1][j+1]=a[i][j+1];
else if(a[i][j+1]<a[i+1][j]) a[i+1][j+1]=a[i+1][j];
}
}
printf("%d\n",a[i][j]);
}
}