eolymp
bolt
Try our new interface for solving problems
Problems

Sleeping Cows

Sleeping Cows

Farmer John has n cows of various sizes. He originally built each cow a personalized barn, but now some of the cows have outgrown their barns. Specifically, FJ originally built n barns of sizes t1, t2, ..., tn, while the cows are now of sizes s1, s2,..., sn (1si, ti109).

Every night, the cows go through a ritual of finding a barn to sleep in. A cow i can sleep in a barn j if and only if they fit within the barn (sitj). Each barn can house at most one cow.

We say that a matching of cows to barns is maximal if and only if every cow assigned to a barn can fit in the barn, and every unassigned cow is incapable of fitting in any of the empty barns left out of the matching.

Compute the number of maximal matchings mod 109 + 7.

Input

The first line contains n (1n3000). The second line contains n integers s1, s2,..., sn. The third line contains n space-separated integers t1, t2, ..., tn.

Output

Print the number of maximal matchings mod 109 + 7.

Example

Here is a list of all nine maximal matchings. An ordered pair (i, j) means that cow i is assigned to barn j.

(1, 1), (2, 2), (3, 4)
(1, 1), (2, 3), (3, 4)
(1, 1), (2, 4)
(1, 2), (2, 3), (3, 4)
(1, 2), (2, 4)
(1, 3), (2, 2), (3, 4)
(1, 3), (2, 4)
(1, 4), (2, 2)
(1, 4), (2, 3)
Time limit 1 second
Memory limit 128 MiB
Input example #1
4
1 2 3 4
1 2 2 3
Output example #1
9
Source 2020 USACO December, Platinum