#P1381B. Unmerge

Unmerge

No submission language available for this problem.

Description

Let aa and bb be two arrays of lengths nn and mm, respectively, with no elements in common. We can define a new array merge(a,b)\mathrm{merge}(a,b) of length n+mn+m recursively as follows:

  • If one of the arrays is empty, the result is the other array. That is, merge(,b)=b\mathrm{merge}(\emptyset,b)=b and merge(a,)=a\mathrm{merge}(a,\emptyset)=a. In particular, merge(,)=\mathrm{merge}(\emptyset,\emptyset)=\emptyset.
  • If both arrays are non-empty, and a1<b1a_1<b_1, then merge(a,b)=[a1]+merge([a2,,an],b)\mathrm{merge}(a,b)=[a_1]+\mathrm{merge}([a_2,\ldots,a_n],b). That is, we delete the first element a1a_1 of aa, merge the remaining arrays, then add a1a_1 to the beginning of the result.
  • If both arrays are non-empty, and a1>b1a_1>b_1, then merge(a,b)=[b1]+merge(a,[b2,,bm])\mathrm{merge}(a,b)=[b_1]+\mathrm{merge}(a,[b_2,\ldots,b_m]). That is, we delete the first element b1b_1 of bb, merge the remaining arrays, then add b1b_1 to the beginning of the result.

This algorithm has the nice property that if aa and bb are sorted, then merge(a,b)\mathrm{merge}(a,b) will also be sorted. For example, it is used as a subroutine in merge-sort. For this problem, however, we will consider the same procedure acting on non-sorted arrays as well. For example, if a=[3,1]a=[3,1] and b=[2,4]b=[2,4], then merge(a,b)=[2,3,1,4]\mathrm{merge}(a,b)=[2,3,1,4].

A permutation is an array consisting of nn distinct integers from 11 to nn in arbitrary order. For example, [2,3,1,5,4][2,3,1,5,4] is a permutation, but [1,2,2][1,2,2] is not a permutation (22 appears twice in the array) and [1,3,4][1,3,4] is also not a permutation (n=3n=3 but there is 44 in the array).

There is a permutation pp of length 2n2n. Determine if there exist two arrays aa and bb, each of length nn and with no elements in common, so that p=merge(a,b)p=\mathrm{merge}(a,b).

The first line contains a single integer tt (1t10001\le t\le 1000)  — the number of test cases. Next 2t2t lines contain descriptions of test cases.

The first line of each test case contains a single integer nn (1n20001\le n\le 2000).

The second line of each test case contains 2n2n integers p1,,p2np_1,\ldots,p_{2n} (1pi2n1\le p_i\le 2n). It is guaranteed that pp is a permutation.

It is guaranteed that the sum of nn across all test cases does not exceed 20002000.

For each test case, output "YES" if there exist arrays aa, bb, each of length nn and with no common elements, so that p=merge(a,b)p=\mathrm{merge}(a,b). Otherwise, output "NO".

Input

The first line contains a single integer tt (1t10001\le t\le 1000)  — the number of test cases. Next 2t2t lines contain descriptions of test cases.

The first line of each test case contains a single integer nn (1n20001\le n\le 2000).

The second line of each test case contains 2n2n integers p1,,p2np_1,\ldots,p_{2n} (1pi2n1\le p_i\le 2n). It is guaranteed that pp is a permutation.

It is guaranteed that the sum of nn across all test cases does not exceed 20002000.

Output

For each test case, output "YES" if there exist arrays aa, bb, each of length nn and with no common elements, so that p=merge(a,b)p=\mathrm{merge}(a,b). Otherwise, output "NO".

Samples

Sample Input 1

6
2
2 3 1 4
2
3 1 2 4
4
3 2 6 1 5 7 8 4
3
1 2 3 4 5 6
4
6 1 3 7 4 5 8 2
6
4 3 2 5 1 11 9 12 8 6 10 7

Sample Output 1

YES
NO
YES
YES
NO
NO

Note

In the first test case, [2,3,1,4]=merge([3,1],[2,4])[2,3,1,4]=\mathrm{merge}([3,1],[2,4]).

In the second test case, we can show that [3,1,2,4][3,1,2,4] is not the merge of two arrays of length 22.

In the third test case, [3,2,6,1,5,7,8,4]=merge([3,2,8,4],[6,1,5,7])[3,2,6,1,5,7,8,4]=\mathrm{merge}([3,2,8,4],[6,1,5,7]).

In the fourth test case, [1,2,3,4,5,6]=merge([1,3,6],[2,4,5])[1,2,3,4,5,6]=\mathrm{merge}([1,3,6],[2,4,5]), for example.