Robots and Exits

AtCoder
IDarc101_d
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
2 2
2 3
1 4
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$$)$
Input #2
3 4
2 5 10
1 3 7 13
Output #2
8

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

Every robot uses Exit $1$.
Input #4
4 5
2 5 7 11
1 3 6 9 13
Output #4
6
Input #5
10 10
4 13 15 18 19 20 21 22 25 27
1 5 11 12 14 16 23 26 29 30
Output #5
22
API Response (JSON)
{
  "problem": {
    "name": "Robots and Exits",
    "description": {
      "content": "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 ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc101_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "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 ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments