#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 SS (with length MM) is a subsequence of AA (with length NN) if there exist 1i1<i2<<iMN1 \leq i_1 < i_2 < \cdots < i_M \leq N so that S(1)=Ai1,S(2)=Ai2,,S(M)=AiMS(1)=A_{i1}, S(2)=A_{i2}, \cdots ,S(M)=A_{iM}

We call sequence SS is a common increasing subsequence of AA and BB if:

  1. SS is a subsequence of both AA and BB;
  2. SS is strictly increasing, which means Si<Si+1S_i<S_{i+1}(1i<M1\leq i <M)

Input

In the first line is one integer TT(T10T\leq 10).

TT cases follow. In each case you will be given two number sequence AA and BB.

On the first line are two integers LALA and LBLB representing the length of AA and BB.

One the second line are LALA integers. The ithi_{th} integer is AiA_i.

One the third line are LBLB integers. The ithi_{th} integer is BiB_i.

(1LA,LB10001\leq LA,LB\leq 1000 , 1Ai,Bi23111\leq A_i,B_i\leq 2^{31}-1).

Output

For each case print one line with an integer LL standing for the length of the longest common increasing subsequence of AA and BB.

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