You are given two horizontal rows of points. Each row has N points. You are also given a permutation P of .
The point in the top row has label i and has coordinates .
The point in the bottom row has label and has coordinates .
You will now draw N paths connecting the
point in the top row to the point in the bottom row where . Denote this path as . The paths do not necessarily have to be straight lines.
The paths need to satisfy the following conditions:
The Intersection Sequence of is the ordered sequence such that
Following figure shows the intersection sequences for
After drawing all the paths, you record the intersection sequence for each individual path. You are now wondering, what is the number of lists of intersection sequences you can write down. Two lists are considered different if there exists a path which has different intersection sequences in the two lists. As this number can get large, output it modulo .
The first line will contain the number of test casesT.
Each test case can be described with two lines.
The first line will contain a single integer N.
The second line will contain N space separated integers .
Output T numbers, the answers to each problem.
For all subtasks:
will be a permutation of .
File 1 (50 pts)
File 3 (50 pts)
The second sample is illustrated in the statement.