#P1548E. Gregor and the Two Painters

    ID: 6001 Type: RemoteJudge 4000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>data structuresdivide and conquergraphsgreedymath*3400

Gregor and the Two Painters

No submission language available for this problem.

Description

Two painters, Amin and Benj, are repainting Gregor's living room ceiling! The ceiling can be modeled as an n×mn \times m grid.

For each ii between 11 and nn, inclusive, painter Amin applies aia_i layers of paint to the entire ii-th row. For each jj between 11 and mm, inclusive, painter Benj applies bjb_j layers of paint to the entire jj-th column. Therefore, the cell (i,j)(i,j) ends up with ai+bja_i+b_j layers of paint.

Gregor considers the cell (i,j)(i,j) to be badly painted if ai+bjxa_i+b_j \le x. Define a badly painted region to be a maximal connected component of badly painted cells, i. e. a connected component of badly painted cells such that all adjacent to the component cells are not badly painted. Two cells are considered adjacent if they share a side.

Gregor is appalled by the state of the finished ceiling, and wants to know the number of badly painted regions.

The first line contains three integers nn, mm and xx (1n,m21051 \le n,m \le 2\cdot 10^5, 1x21051 \le x \le 2\cdot 10^5) — the dimensions of Gregor's ceiling, and the maximum number of paint layers in a badly painted cell.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai21051 \le a_i \le 2\cdot 10^5), the number of paint layers Amin applies to each row.

The third line contains mm integers b1,b2,,bmb_1, b_2, \ldots, b_m (1bj21051 \le b_j \le 2\cdot 10^5), the number of paint layers Benj applies to each column.

Print a single integer, the number of badly painted regions.

Input

The first line contains three integers nn, mm and xx (1n,m21051 \le n,m \le 2\cdot 10^5, 1x21051 \le x \le 2\cdot 10^5) — the dimensions of Gregor's ceiling, and the maximum number of paint layers in a badly painted cell.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai21051 \le a_i \le 2\cdot 10^5), the number of paint layers Amin applies to each row.

The third line contains mm integers b1,b2,,bmb_1, b_2, \ldots, b_m (1bj21051 \le b_j \le 2\cdot 10^5), the number of paint layers Benj applies to each column.

Output

Print a single integer, the number of badly painted regions.

Samples

Sample Input 1

3 4 11
9 8 5
10 6 7 2

Sample Output 1

2

Sample Input 2

3 4 12
9 8 5
10 6 7 2

Sample Output 2

1

Sample Input 3

3 3 2
1 2 1
1 2 1

Sample Output 3

4

Sample Input 4

5 23 6
1 4 3 5 2
2 3 1 6 1 5 5 6 1 3 2 6 2 3 1 6 1 4 1 6 1 5 5

Sample Output 4

6

Note

The diagram below represents the first example. The numbers to the left of each row represent the list aa, and the numbers above each column represent the list bb. The numbers inside each cell represent the number of paint layers in that cell.

The colored cells correspond to badly painted cells. The red and blue cells respectively form 22 badly painted regions.