atcoder#ABC154F. [ABC154F] Many Many Paths

[ABC154F] Many Many Paths

Score : 600600 points

Problem Statement

Snuke is standing on a two-dimensional plane. In one operation, he can move by 11 in the positive xx-direction, or move by 11 in the positive yy-direction.

Let us define a function f(r,c)f(r, c) as follows:

  • f(r,c):=f(r,c) := (The number of paths from the point (0,0)(0, 0) to the point (r,c)(r, c) that Snuke can trace by repeating the operation above)

Given are integers r1r_1, r2r_2, c1c_1, and c2c_2. Find the sum of f(i,j)f(i, j) over all pair of integers (i,j)(i, j) such that r1ir2r_1 \leq i \leq r_2 and c1jc2c_1 \leq j \leq c_2, and compute this value modulo (109+7)(10^9+7).

Constraints

  • 1r1r21061 \leq r_1 \leq r_2 \leq 10^6
  • 1c1c21061 \leq c_1 \leq c_2 \leq 10^6
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

r1r_1 c1c_1 r2r_2 c2c_2

Output

Print the sum of f(i,j)f(i, j) modulo (109+7)(10^9+7).

1 1 2 2
14

For example, there are two paths from the point (0,0)(0, 0) to the point (1,1)(1, 1): (0,0)(0,0)(0,1)(0,1)(1,1)(1,1) and (0,0)(0,0)(1,0)(1,0)(1,1)(1,1), so f(1,1)=2f(1,1)=2.

Similarly, f(1,2)=3f(1,2)=3, f(2,1)=3f(2,1)=3, and f(2,2)=6f(2,2)=6. Thus, the sum is 1414.

314 159 2653 589
602215194