#Lutece0243. Longest Common Increasing Subsequence
Longest Common Increasing Subsequence
Migrated from Lutece 243 Longest Common Increasing Subsequence
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
You should have been familiar with the LCS(Longest Common Subsequence) and LIS(Longest Increasing Subsequence problem. Now, here is a challenge for you to solve the combined problem LCIS.
We call sequence (with length ) is a subsequence of (with length ) if there exist so that
We call sequence is a common increasing subsequence of and if:
- is a subsequence of both and ;
- is strictly increasing, which means ()
Input
In the first line is one integer ().
cases follow. In each case you will be given two number sequence and .
On the first line are two integers and representing the length of and .
One the second line are integers. The integer is .
One the third line are integers. The integer is .
( , ).
Output
For each case print one line with an integer standing for the length of the longest common increasing subsequence of and .
Samples
3
6 5
1 3 2 3 4 5
1 2 3 4 5
5 5
5 4 3 2 1
5 4 3 2 1
3 3
1 1 1
1 1 1
5
1
1
Resources
StephYDX