eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

Common Subsequence

Common Subsequence

A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence \textbf{X = < x_1, x_2, ..., x_m >} another sequence \textbf{Z = < z_1, z_2, ..., z_k >} is a subsequence of \textbf{X} if there exists a strictly increasing sequence \textbf{< i_1, i_2, ..., i_k >} of indices of \textbf{X} such that for all\textbf{ j = 1}, \textbf{2}, \textbf{...}, \textbf{k, x_ij = zj}. For example, \textbf{Z = < a, b, f, c >} is a subsequence of \textbf{X = < a, b, c, f, b, c >} with index sequence \textbf{< 1, 2, 4, 6 >}. Given two sequences \textbf{X} and \textbf{Y} the problem is to find the length of the maximum-length common subsequence of \textbf{X} and \textbf{Y}. \InputFile The program input is from the std input. Each data set in the input contains two strings representing the given sequences. The sequences are separated by any number of white spaces. The input data are correct. \OutputFile 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.
Лимит времени 1 секунда
Лимит использования памяти 16 MiB
Входные данные #1
abcfbc         abfcab
programming    contest 
abcd           mnp
Выходные данные #1
4
2
0