201013: [AtCoder]ARC101 F - Robots and Exits

Memory Limit:1024 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $900$ points

Problem Statement

There are $N$ robots and $M$ exits on a number line. The $N + M$ coordinates of these are all integers and all distinct. For each $i$ ($1 \leq i \leq N$), the coordinate of the $i$-th robot from the left is $x_i$. Also, for each $j$ ($1 \leq j \leq M$), the coordinate of the $j$-th exit from the left is $y_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 $1$.
  • Decrement the coordinates of all the robots on the number line by $1$.

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 $10^9 + 7$. Here, two combinations of exits are considered different when there is a robot that used different exits in those two combinations.

Constraints

  • $1 \leq N, M \leq 10^5$
  • $1 \leq x_1 < x_2 < ... < x_N \leq 10^9$
  • $1 \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:

$N$ $M$
$x_1$ $x_2$ $...$ $x_N$
$y_1$ $y_2$ $...$ $y_M$

Output

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


Sample Input 1

2 2
2 3
1 4

Sample Output 1

3

The $i$-th robot from the left will be called Robot $i$, and the $j$-th exit from the left will be called Exit $j$. There are three possible combinations of exits (the exit used by Robot $1$, the exit used by Robot $2$) as follows:

  • $($Exit $1$$,$ Exit $1$$)$
  • $($Exit $1$$,$ Exit $2$$)$
  • $($Exit $2$$,$ Exit $2$$)$

Sample Input 2

3 4
2 5 10
1 3 7 13

Sample Output 2

8

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


Sample Input 3

4 1
1 2 4 5
3

Sample Output 3

1

Every robot uses Exit $1$.


Sample Input 4

4 5
2 5 7 11
1 3 6 9 13

Sample Output 4

6

Sample Input 5

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

Sample Output 5

22

Input

题意翻译

现在有 $n$ 个机器人和 $m$ 个出口在一个数轴上,每个机器人和出口都有一个**正整数**坐标,并且这 $n+m$ 个坐标都互不相同 现在执行若干次操作,每次操作可以是: + 将所有机器人的坐标减一 + 将所有机器人的坐标加一 当一个机器人移到出口的的时候他就会消失 操作将进行直到所有机器人消失 两种操作序列不同,当且仅当存在至少一个机器人在两次操作序列进行完成后从不同的出口消失 给出每个机器人和出口的坐标,求有多少种不同的操作序列,输出方案数对 $10^9+7$ 取模的结果 坐标 $\leq10^9$ $1\leq n,m\leq 10^5$

加入题单

算法标签: