Problem1040--最长公共子序列Ⅰ

1040: 最长公共子序列Ⅰ

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

PIPI要来考考大家一个经典问题——最长公共子序列。 
给你两个只包含小写字母的字符串,要你求最长公共子序列的长度~

Input

多组输入 
第一行为两个字符串,用空格分开。保证字符串的长度不超过1000.

Output

输出一个整数,代表最长公共子序列的长度

Sample Input Copy

abcfbc abfcab
programming contest 
abcd mnp

Sample Output Copy

4
2
0

Source/Category