#ARC101D. [ARC101F] Robots and Exits

[ARC101F] Robots and Exits

Score : 900900 points

Problem Statement

There are NN robots and MM exits on a number line. The N+MN + M coordinates of these are all integers and all distinct. For each ii (1iN1 \leq i \leq N), the coordinate of the ii-th robot from the left is xix_i. Also, for each jj (1jM1 \leq j \leq M), the coordinate of the jj-th exit from the left is yjy_j.

Snuke can repeatedly perform the following two kinds of operations in any order to move all the robots simultaneously:

  • Increment the coordinates of all the robots on the number line by 11.
  • Decrement the coordinates of all the robots on the number line by 11.

Each robot will disappear from the number line when its position coincides with that of an exit, going through that exit. Snuke will continue performing operations until all the robots disappear.

When all the robots disappear, how many combinations of exits can be used by the robots? Find the count modulo 109+710^9 + 7. Here, two combinations of exits are considered different when there is a robot that used different exits in those two combinations.

Constraints

  • 1N,M1051 \leq N, M \leq 10^5
  • 1x1<x2<...<xN1091 \leq x_1 < x_2 < ... < x_N \leq 10^9
  • 1y1<y2<...<yM1091 \leq y_1 < y_2 < ... < y_M \leq 10^9
  • All given coordinates are integers.
  • All given coordinates are distinct.

Input

Input is given from Standard Input in the following format:

NN MM

x1x_1 x2x_2 ...... xNx_N

y1y_1 y2y_2 ...... yMy_M

Output

Print the number of the combinations of exits that can be used by the robots when all the robots disappear, modulo 109+710^9 + 7.

2 2
2 3
1 4
3

The ii-th robot from the left will be called Robot ii, and the jj-th exit from the left will be called Exit jj. There are three possible combinations of exits (the exit used by Robot 11, the exit used by Robot 22) as follows:

  • ((Exit 11,, Exit 11))
  • ((Exit 11,, Exit 22))
  • ((Exit 22,, Exit 22))
3 4
2 5 10
1 3 7 13
8

The exit for each robot can be chosen independently, so there are 23=82^3 = 8 possible combinations of exits.

4 1
1 2 4 5
3
1

Every robot uses Exit 11.

4 5
2 5 7 11
1 3 6 9 13
6
10 10
4 13 15 18 19 20 21 22 25 27
1 5 11 12 14 16 23 26 29 30
22